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
It would be great to be able to add task name aliases.
For instance, I have this task named: api:prisma:migrate I would like to add a shortened alias a:p:m and be able to run the task with both notations.
api:prisma:migrate
a:p:m
tasks: api:npm:install: alias: a:n:i cmds: - docker-compose exec api sh -c 'npm install {{.CLI_ARGS}'
It could even be a list of aliases, and not constraint the user to a single naming alterrnative.
tasks: api:npm:install: aliases: - a:n:i - npmi - etc cmds: - docker-compose exec api sh -c 'npm install {{.CLI_ARGS}'
The text was updated successfully, but these errors were encountered:
Seems to be a duplicate of #675 & #879, sorry about that
Sorry, something went wrong.
No branches or pull requests
It would be great to be able to add task name aliases.
For instance, I have this task named:
api:prisma:migrate
I would like to add a shortened alias
a:p:m
and be able to run the task with both notations.It could even be a list of aliases, and not constraint the user to a single naming alterrnative.
The text was updated successfully, but these errors were encountered: