You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the Lume CLI, I would like to be able to check which commands are available, and from which version I'm running.
Common conventions for CLI tools are to make these functions available with --help/-h and --version/-v flags. In other conventions, these functionalities are implemented by triggering commands, such as help or version.
It could be nice, if the Lume CLI would support basic implementations for both.
Filing this here, because this is the CLI wrapper for the original command.
Lume CLI is just a wrapper to deno task lume. It means that if you run lume --version it runs deno task lume --version and returns the version of Lume used in your project (not the version of Lume CLI). And the same happens to lume -h.
But it's true that the CLI fails if lume task doesn't exist in the current directory. Maybe in this case the error should be catched and show some helpful information.
When using the Lume CLI, I would like to be able to check which commands are available, and from which version I'm running.
Common conventions for CLI tools are to make these functions available with
--help
/-h
and--version
/-v
flags. In other conventions, these functionalities are implemented by triggering commands, such ashelp
orversion
.It could be nice, if the Lume CLI would support basic implementations for both.
Filing this here, because this is the CLI wrapper for the original command.
References:
The text was updated successfully, but these errors were encountered: