Skip to content

Commit 84ee651

Browse files
committed
Add a default exclude pattern for composer packages folder
1 parent 26a5167 commit 84ee651

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/FireFS/Watcher/FileSystemWatcher.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ class FileSystemWatcher
9696
*/
9797
private $_patternExclude = array(
9898
"/^.+[\/\\\\]node_modules[\/\\\\]?.*$/",
99-
"/^.+[\/\\\\]\.git[\/\\\\]?.*$/"
99+
"/^.+[\/\\\\]\.git[\/\\\\]?.*$/",
100+
"/^.+[\/\\\\]vendor[\/\\\\]?.*$/"
100101
);
101102

102103
/**

0 commit comments

Comments
 (0)