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
Is your feature request related to a problem? Please describe
It'd be useful to have an alias for a task. Such will make it easier to work in a large team and reduce mental migration from tools used in different platforms and environments.
Eg: Windows cmd: dir, but in unix it's ls
In addition this will also provide a way to invoke the same task in many different ways, avoiding the same mental clash.
Describe the solution you'd like
build:clean:
aliases: ['build+clean', 'build-clean', 'clean-build'],# next is meant for single aliasesalias: build+cleandesc: clean & build artifacts, which may produce dirs ("dist", "build", ".cache")spec: defaultcommands:
- task: rm:build
- task: build
Additional context
List of tasks would also show these aliases.
The text was updated successfully, but these errors were encountered:
This is nice to have, though I'm not sure how someone is building cross-platform (mainly windows + linux/mac) tasks, they won't work on windows anyway since your relying on linux/mac commands like ls?
Is your feature request related to a problem? Please describe
It'd be useful to have an alias for a task. Such will make it easier to work in a large team and reduce mental migration from tools used in different platforms and environments.
Eg: Windows cmd:
dir
, but in unix it'sls
In addition this will also provide a way to invoke the same task in many different ways, avoiding the same mental clash.
Describe the solution you'd like
Additional context
List of tasks would also show these aliases.
The text was updated successfully, but these errors were encountered: