From 79405217aefed38ff30c7ac220f7ed004168afd5 Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Tue, 25 Jul 2023 10:07:14 -0400 Subject: [PATCH] add a taskfile --- Taskfile.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Taskfile.yaml diff --git a/Taskfile.yaml b/Taskfile.yaml new file mode 100644 index 0000000..528c869 --- /dev/null +++ b/Taskfile.yaml @@ -0,0 +1,11 @@ +# https://taskfile.dev + +version: '3' + +tasks: + build: tsc + + test: + cmds: + - { task: build } + - vitest run src