🔧 Improve exclude paths

This commit is contained in:
brunosimon
2017-12-26 13:04:44 +01:00
parent f5368e060f
commit 494bd401b9
2 changed files with 5 additions and 2 deletions
+4 -1
View File
@@ -76,7 +76,10 @@ class App
'**/.DS_Store', '**/.DS_Store',
'node_modules/**', 'node_modules/**',
'vendor/**', 'vendor/**',
'.git' '.git',
'.vscode',
'.env',
'.log'
], ],
type: 'array' type: 'array'
}) })
+1 -1
View File
@@ -76,7 +76,7 @@ Arguments list
|---|---| |---|---|
|parameter|`--exclude`| |parameter|`--exclude`|
|shortcut|`-e`| |shortcut|`-e`|
|default value|*(string)*`**/.DS_Store,node_modules/**,vendor/**,.git`| |default value|*(string)*`**/.DS_Store,node_modules/**,vendor/**,.git,.vscode,.env,.log`|
|description|List of paths to exclude (comma seperated and wildcards support)| |description|List of paths to exclude (comma seperated and wildcards support)|
||| |||