ignore tmp files

This commit is contained in:
Jonathan Rainville 2018-05-10 13:42:02 -04:00
parent a3f8c809a0
commit fbd36b58e5
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ class Watch {
this.logger.trace(files);
let configWatcher = chokidar.watch(files, {
ignored: /[\/\\]\./, persistent: true, ignoreInitial: true, followSymlinks: true
ignored: /[\/\\]\.|tmp_/, persistent: true, ignoreInitial: true, followSymlinks: true
});
this.fileWatchers.push(configWatcher);