updeep-remeda/Taskfile.yaml
2023-01-03 13:51:35 -05:00

19 lines
298 B
YAML

# https://taskfile.dev
version: "3"
vars:
GREETING: Hello, World!
tasks:
build:
cmds:
- rm -fr types/ esm/ commonjs/
- tsc -p tsconfig.json
- tsc -p tsconfig-cjs.json
- tsc -p tsconfig-types.json
default:
cmds:
- echo "{{.GREETING}}"
silent: true