🐛 Enable hidden file but .DS_Store

This commit is contained in:
brunosimon
2016-11-20 22:49:51 +01:00
parent f686b16daa
commit b9f9aa98ff
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -4,6 +4,7 @@
"max_file_size": 99999,
"exclude" :
[
"**/.DS_Store",
"node_modules/**",
"vendors/**"
]
+1 -1
View File
@@ -83,7 +83,7 @@ class Watcher
this.watcher = chokidar.watch(
process.cwd(),
{
ignored : /[\/\\]\./,
// ignored : /[\/\\]\./,
ignoreInitial: true
}
)