Skip to content

Commit

Permalink
Lower default aggregateTimeout to 20ms
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Molinaro committed Dec 22, 2021
1 parent ccecc17 commit 6ec6eff
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

1 comment on commit 6ec6eff

@weimengxi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pardon me. What's the reason for this lower change? @markjm

Please sign in to comment.