It's time to say goodbye to my website after two years. I'm working on something big ... Stay tuned! 🚀
KarChunTKarChunT

Task Aliases

Refer here for namespace aliases.

You can create aliases for tasks in Taskfile to simplify command execution. This allows you to define shorter or more intuitive names for tasks, making it easier to run them.

Taskfile.yaml
version: '3'
tasks:
  complex-task-name:
    aliases: [complex]
    cmds:
      - echo "This is a complex task name"

Last updated on