Skip to content

Commit

Permalink
Merge pull request #15041 from markjm/markjm/aggregate-timeout
Browse files Browse the repository at this point in the history
lower default aggregateTimeout to 20ms
  • Loading branch information
sokra committed Jan 10, 2022
2 parents 98887e4 + 6ec6eff commit 5929bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Watching.js
Expand Up @@ -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;
Expand Down

0 comments on commit 5929bfc

Please sign in to comment.