This command should aggregate all the available commands and output a list of available commands:
dojo help
Hey there, here are all the things you can do with dojo-cli:
help - shows all the available commands
create - creates a new dojo application
run - ...
For more information on any of these commands just run them with '-h',
e.g. 'dojo run -h' will give you the help for the 'run' command.
(You are running dojo-cli 2.3.20)
It shouldn't output the full help for every command as that will get too verbose. The top level help command is basically a command discovery point.
Implement the
help
command.This command should aggregate all the available commands and output a list of available commands:
It shouldn't output the full help for every command as that will get too verbose. The top level
help
command is basically a command discovery point.