Merge pull request #15041 from markjm/markjm/aggregate-timeout

lower default aggregateTimeout to 20ms
This commit is contained in:
Tobias Koppers 2022-01-10 14:05:16 +01:00 committed by GitHub
commit 5929bfcf35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;