diff --git a/bin/config.default.json b/bin/config.default.json index 7abe140..ced8783 100644 --- a/bin/config.default.json +++ b/bin/config.default.json @@ -4,6 +4,7 @@ "max_file_size": 99999, "exclude" : [ + "**/.DS_Store", "node_modules/**", "vendors/**" ] diff --git a/watcher/watcher.class.js b/watcher/watcher.class.js index f3913b9..0ed6ce5 100644 --- a/watcher/watcher.class.js +++ b/watcher/watcher.class.js @@ -83,7 +83,7 @@ class Watcher this.watcher = chokidar.watch( process.cwd(), { - ignored : /[\/\\]\./, + // ignored : /[\/\\]\./, ignoreInitial: true } )