提交 43149bdb 编写于 作者: N Naoyuki Kanezawa 提交者: Tim Neutkens

fix not to overwrite the ignored option on Windows (#824)

上级 01191490
......@@ -122,9 +122,14 @@ export default class HotReloader {
this.prevChunkHashes = chunkHashes
})
const ignored = [
/(^|[/\\])\../, // .dotfiles
/node_modules/
]
const windowsSettings = isWindowsBash() ? {
lazy: false,
watchOptions: {
ignored,
aggregateTimeout: 300,
poll: true
}
......@@ -135,12 +140,7 @@ export default class HotReloader {
noInfo: true,
quiet: true,
clientLogLevel: 'warning',
watchOptions: {
ignored: [
/(^|[/\\])\../, // .dotfiles
/node_modules/
]
},
watchOptions: { ignored },
...windowsSettings
})
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册