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
Meow converts the string value '6.0' to the numeric value 6.
const minicli = meow({autoHelp: false, autoVersion: true, pkg, argv: gen}); const options = minicli.flags;
const minicli = meow({autoHelp: false, autoVersion: true, pkg, argv: gen});
const options = minicli.flags;
argV provided.
'--flavor', 'default', '--runtime', '6.0',
returned flags by meow.
flavor: default runtime: 6
The text was updated successfully, but these errors were encountered:
Define the types in the flags option.
flags
Sorry, something went wrong.
I can't change the code. That snippet it is from Yo package. Don't you think that regardless of the type it should not change "6.0" to "6"?
No branches or pull requests
Meow converts the string value '6.0' to the numeric value 6.
const minicli = meow({autoHelp: false, autoVersion: true, pkg, argv: gen});
const options = minicli.flags;
argV provided.
returned flags by meow.
The text was updated successfully, but these errors were encountered: