@@ -33,6 +33,7 @@ opts.require.forEach(function (module) {
33
33
} ) ;
34
34
35
35
var resolvePath = require ( 'path' ) . resolve ;
36
+ var requireResolve = require . resolve ;
36
37
37
38
var matcher ;
38
39
if ( typeof opts . ignore === 'string' ) {
@@ -50,19 +51,22 @@ if (typeof opts.ignore === 'string') {
50
51
var glob = require ( 'glob' ) ;
51
52
52
53
var files = opts . _ . reduce ( function ( result , arg ) {
53
- // If glob does not match, `files` will be an empty array.
54
- // Note: `glob.sync` may throw an error and crash the node process.
55
- var globFiles = glob . sync ( arg ) ;
54
+ if ( glob . hasMagic ( arg ) ) {
55
+ // If glob does not match, `files` will be an empty array.
56
+ // Note: `glob.sync` may throw an error and crash the node process.
57
+ var globFiles = glob . sync ( arg ) ;
56
58
57
- if ( ! Array . isArray ( globFiles ) ) {
58
- throw new TypeError ( 'unknown error: glob.sync("' + arg + '") did not return an array or throw. Please report this.' ) ;
59
- }
59
+ if ( ! Array . isArray ( globFiles ) ) {
60
+ throw new TypeError ( 'unknown error: glob.sync("' + arg + '") did not return an array or throw. Please report this.' ) ;
61
+ }
60
62
61
- return result . concat ( globFiles ) ;
63
+ return result . concat ( globFiles ) ;
64
+ }
65
+ return result . concat ( arg ) ;
62
66
} , [ ] ) . filter ( function ( file ) {
63
67
return ! matcher || ! matcher . shouldIgnore ( file ) ;
64
68
} ) . map ( function ( file ) {
65
- return resolvePath ( cwd , file ) ;
69
+ return requireResolve ( resolvePath ( cwd , file ) ) ;
66
70
} ) ;
67
71
68
72
var hasImport = require ( 'has-dynamic-import' ) ;
0 commit comments