Closed LitoMore closed 5 years ago
Hi, it's a feature request!
I'm working on this issue: https://github.com/sindresorhus/latest-version-cli/issues/2.
About this case:
$ latest-version npm --version=beta
I think meow should not print the version if cli.input.length === 0 is false.
meow
cli.input.length === 0
false
Although we already have the autoVersion option, but if we turn it to false we have to handle the showVersion manually.
autoVersion
showVersion
I agree. Same with --help. PR welcome.
--help
Hi, it's a feature request!
I'm working on this issue: https://github.com/sindresorhus/latest-version-cli/issues/2.
About this case:
I think
meow
should not print the version ifcli.input.length === 0
isfalse
.Although we already have the
autoVersion
option, but if we turn it tofalse
we have to handle theshowVersion
manually.