refactor: embed the default Taskfile instead of defining it in code (#2112)

This commit is contained in:
Pete Davison
2025-03-11 13:53:08 +00:00
committed by GitHub
parent 076aff1f8e
commit d1360ee72a
2 changed files with 16 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
default:
cmds:
- echo "{{.GREETING}}"
silent: true