From 6ec6eff163fc26744cef0207943fce4cc368174a Mon Sep 17 00:00:00 2001 From: Mark Molinaro Date: Wed, 22 Dec 2021 21:42:57 +0000 Subject: [PATCH] Lower default aggregateTimeout to 20ms --- lib/Watching.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Watching.js b/lib/Watching.js index f92b55119e7..8cfd357ef55 100644 --- a/lib/Watching.js +++ b/lib/Watching.js @@ -49,7 +49,7 @@ class Watching { this.watchOptions = {}; } if (typeof this.watchOptions.aggregateTimeout !== "number") { - this.watchOptions.aggregateTimeout = 200; + this.watchOptions.aggregateTimeout = 20; } this.compiler = compiler; this.running = false;