Merge pull request #5869 from micmania1/patch-11

FIX don't look in node_modules
This commit is contained in:
Damian Mooyman 2016-08-12 13:52:23 +12:00 committed by GitHub
commit 14e0cd52bd

View File

@ -33,7 +33,7 @@ class SS_FileFinder {
* @var array * @var array
*/ */
protected static $vcs_dirs = array( protected static $vcs_dirs = array(
'.git', '.svn', '.hg', '.bzr' '.git', '.svn', '.hg', '.bzr', 'node_modules',
); );
/** /**