Ver 2.1.0
Changes
Fixes
- #32 Console app that contains a single command doesn't show the detail for help.
Breaking changes
help
and version
command is no longer supported if an app has only one command.
Use -help
or -version
option instead of those commands.
$ myapp -help
Usage: myapp
...
$ myapp -version
1.0.0
If an app provides one or more named commands, help
command is still available.
$ myapp help
Usage: myapp <Command>
Commands:
foo
bar
$ myapp help foo
Usage: myapp foo
...