I doubt that glob package is imported by but not be used.
At cli.enable function In cli.js, glob is required as cli.glob but not used after that.
case 'glob':
cli.glob = require('glob');
break;
In this example, wild card expansion is done by the shell. So the argument like "*.js" will not be expanded to file names.
$ node examples/glob.js *.js
[ 'cli.js', 'index.js' ]
$ node examples/glob.js "*.js"
[ '*.js' ]
I doubt that glob package is imported by but not be used.
At
cli.enablefunction Incli.js, glob isrequired ascli.globbut not used after that.In this example, wild card expansion is done by the shell. So the argument like
"*.js"will not be expanded to file names.