We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6bce74 commit cde8a2eCopy full SHA for cde8a2e
index.js
@@ -89,7 +89,11 @@ Promise.resolve()
89
printVerbose(chalk.dim('\nWaiting for file changes...'))
90
const watcher = chokidar.watch(input.concat(dependencies(results)), {
91
usePolling: argv.poll,
92
- interval: argv.poll && typeof argv.poll === 'number' ? argv.poll : 100
+ interval: argv.poll && typeof argv.poll === 'number' ? argv.poll : 100,
93
+ awaitWriteFinish: {
94
+ stabilityThreshold: 50,
95
+ pollInterval: 10
96
+ }
97
})
98
99
if (configFile) watcher.add(configFile)
0 commit comments