task-keeper
task-keeper copied to clipboard
A cli to manage tasks from different task runners or package managers
If I have a task `dev` in e.g. `package.json` & `Taskfile.yaml`, it will run both. This is undesirable for me (and I feel like it used to be different?), as...
I'd argue it's much more often that I'd want to list available tasks, and it's well known to use `--help` to get help (also, I added a hint at the...
(... for this repo) doesn't seem to be `rustfmt` - so for now I'd just disable auto-formatting when editing :tipping_hand_man:
The [original PR](https://github.com/linux-china/task-keeper/pull/2) was from the wrong branch and mingled with other changes, so I created this clean one. For reference, here's the gist: > This is recommended for binaries...
[Taskfile Docs](https://taskfile.dev/usage/#task-aliases) Example `Taskfile.yml`: ```yaml version: '3' tasks: generate: aliases: [gen] cmds: - task: gen-mocks ``` ### Current behaviour - alias is not found - list shows cut-off description ```...