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
For options with multiple: false and defaultOption: true, the first value parsed should be taken - not the last.
multiple: false
defaultOption: true
Say you have this option definition:
{ name: 'file', defaultOption:true }
And you run your example app this way:
$ example one.js two.js three.js
Then, in the output file should be set to 'one.js', not 'three.js' (as it is currently).
file
'one.js'
'three.js'
The text was updated successfully, but these errors were encountered:
fixed and released in v4.0.0.
Sorry, something went wrong.
No branches or pull requests
For options with
multiple: false
anddefaultOption: true
, the first value parsed should be taken - not the last.Say you have this option definition:
And you run your example app this way:
Then, in the output
file
should be set to'one.js'
, not'three.js'
(as it is currently).The text was updated successfully, but these errors were encountered: