task-keeper 0.30.9

Task keeper to manage tasks from different task runners
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $schema: https://taskfile.dev/schema.json
version: '3'

tasks:
  hello:
    desc: Say Hello
    cmds:
      - echo 'Hello World from Task!'
    silent: true

  hello2:
    cmds:
      - echo 'Hello2'
    silent: true