File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -47,17 +47,19 @@ if (typeof opts.ignore === 'string') {
47
47
48
48
var glob = require ( 'glob' ) ;
49
49
50
- opts . _ . forEach ( function ( arg ) {
50
+ opts . _ . reduce ( function ( result , arg ) {
51
51
// If glob does not match, `files` will be an empty array. Note: `glob.sync` may throw an error and crash the node process.
52
52
var files = glob . sync ( arg ) ;
53
53
54
54
if ( ! Array . isArray ( files ) ) {
55
55
throw new TypeError ( 'unknown error: glob.sync did not return an array or throw. Please report this.' ) ;
56
56
}
57
57
58
- files . filter ( function ( file ) { return ! matcher || ! matcher . shouldIgnore ( file ) ; } ) . forEach ( function ( file ) {
59
- require ( resolvePath ( cwd , file ) ) ;
60
- } ) ;
58
+ return result . concat ( files ) ;
59
+ } , [ ] ) . filter ( function ( file ) {
60
+ return ! matcher || ! matcher . shouldIgnore ( file ) ;
61
+ } ) . forEach ( function ( file ) {
62
+ require ( resolvePath ( cwd , file ) ) ;
61
63
} ) ;
62
64
63
65
// vim: ft=javascript
You can’t perform that action at this time.
0 commit comments