From fbd36b58e5b69cfb4bce0454bdb31ea40c4fbfa6 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Thu, 10 May 2018 13:42:02 -0400 Subject: [PATCH] ignore tmp files --- lib/pipeline/watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pipeline/watch.js b/lib/pipeline/watch.js index 1f3fc1403..2bce33d1b 100644 --- a/lib/pipeline/watch.js +++ b/lib/pipeline/watch.js @@ -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);