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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
var args = parse('--watchFiles path1 --watchFiles path2', { array: ['watch-files'], configObjects: [{'watchFiles': 'path3'}], configuration: { 'combine-arrays': true, 'camel-case-expansion': true } }) console.log(args); // { _: [], watchFiles: [ 'path1', 'path2' ], 'watch-files': [ 'path1', 'path2' ] }
The result is incorrect, it should be:
{ _: [], watchFiles: [ 'path1', 'path2', 'path3' ], 'watch-files': [ 'path1', 'path2', 'path3' ] }
The input of --watchFiles is not recognised as the camel-cased version of --watch-files.
--watchFiles
--watch-files
yargs-parser: v13.0.0 and also current master.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The result is incorrect, it should be:
The input of
--watchFiles
is not recognised as the camel-cased version of--watch-files
.yargs-parser: v13.0.0 and also current master.
The text was updated successfully, but these errors were encountered: