We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
cli.enable
cli.js
require
cli.glob
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.
"*.js"
$ node examples/glob.js *.js [ 'cli.js', 'index.js' ] $ node examples/glob.js "*.js" [ '*.js' ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I doubt that glob package is imported by but not be used.
At
cli.enable
function Incli.js
, glob isrequire
d ascli.glob
but 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.The text was updated successfully, but these errors were encountered: