updeep-remeda/Taskfile.yaml

19 lines
249 B
YAML
Raw Permalink Normal View History

2023-01-03 18:51:35 +00:00
# https://taskfile.dev
version: "3"
vars:
GREETING: Hello, World!
tasks:
2023-01-03 19:31:53 +00:00
test: vitest run
2023-01-03 18:51:35 +00:00
build:
2023-01-03 19:31:53 +00:00
deps: [test]
2023-01-03 18:51:35 +00:00
cmds:
2023-01-03 19:31:53 +00:00
- rm -fr esm/
2023-01-03 18:51:35 +00:00
- tsc -p tsconfig.json
default:
cmds:
- echo "{{.GREETING}}"
silent: true