From 5b082319f977d5e783e752cb15edd537ca452c54 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sun, 4 Feb 2024 12:40:51 -0500 Subject: [PATCH] add Taskfile --- Taskfile.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Taskfile.yaml diff --git a/Taskfile.yaml b/Taskfile.yaml new file mode 100644 index 0000000..e126acd --- /dev/null +++ b/Taskfile.yaml @@ -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