add Taskfile

no-ssr
Yanick Champoux 2024-02-04 12:40:51 -05:00
parent 2fe7ddc2e0
commit 5b082319f9
1 changed files with 16 additions and 0 deletions

16
Taskfile.yaml Normal file
View File

@ -0,0 +1,16 @@
# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
update-game:
cmds:
- node src/scripts/updateUsers.js
default:
cmds:
- echo "{{.GREETING}}"
silent: true