Skip to content

Commit d5e23f1

Browse files
committed
Fixed issue with pattern matching.
1 parent a3291f2 commit d5e23f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/doxdox.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ const globby = require('globby');
77
const loaders = require('./loaders');
88

99
const DEFAULT_IGNORE_PATHS = [
10-
'!**/{node_modules,bower_components,test}/**',
11-
'!**/Gruntfile.js',
12-
'!**/Gulpfile.js'
10+
'!./{node_modules,bower_components,test}/**',
11+
'!./Gruntfile.js',
12+
'!./Gulpfile.js'
1313
];
1414

1515
const REPLACE_FILENAME_REGEXP = new RegExp(`${process.cwd()}/|./`);

0 commit comments

Comments
 (0)