Skip to content

Commit

Permalink
Add a default exclude pattern for composer packages folder
Browse files Browse the repository at this point in the history
  • Loading branch information
na2axl committed Dec 26, 2018
1 parent 26a5167 commit 84ee651
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/FireFS/Watcher/FileSystemWatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ class FileSystemWatcher
*/
private $_patternExclude = array(
"/^.+[\/\\\\]node_modules[\/\\\\]?.*$/",
"/^.+[\/\\\\]\.git[\/\\\\]?.*$/"
"/^.+[\/\\\\]\.git[\/\\\\]?.*$/",
"/^.+[\/\\\\]vendor[\/\\\\]?.*$/"
);

/**
Expand Down

0 comments on commit 84ee651

Please sign in to comment.