Describe the feature
Hey! Sometimes we faced with a situation that we should create alias for subcommands. For example, pnpm i and pnpm install. The subcommand named i and subcommand named install is the same command.
The solution now is to create two subcommands with same value, like:
subCommands: { i: installCommand, install: installCommand }
But this looks not so elegant. Can we support alias parameter for defineCommand? I can work for my issue.
Additional information
Describe the feature
Hey! Sometimes we faced with a situation that we should create alias for subcommands. For example,
pnpm iandpnpm install. The subcommand namediand subcommand namedinstallis the same command.The solution now is to create two subcommands with same value, like:
But this looks not so elegant. Can we support
aliasparameter fordefineCommand? I can work for my issue.Additional information