We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug
Setting aliases in a command's index file does not propagate to sub-commands.
aliases
in ./commands/identity:
./commands/identity
export default class Identity extends BaseCommand { static override aliases = ['id'];
in the same directory: ./commands/identity/create does not inherit the id alias
./commands/identity/create
id
export default class Create extends BaseCommand {
Therefore cli id works but cli id create does not.
cli id
cli id create
It would be convenient to set aliases at the root level.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bug
What is the current behavior?
Setting
aliases
in a command's index file does not propagate to sub-commands.in
./commands/identity
:in the same directory:
./commands/identity/create
does not inherit theid
aliasTherefore
cli id
works butcli id create
does not.What is the expected behavior?
It would be convenient to set aliases at the root level.
The text was updated successfully, but these errors were encountered: