under-falling-skies/Taskfile.yaml

16 lines
220 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
tasks:
build: vite build
dev: vite
test: vitest src
default:
cmds:
- echo "{{.GREETING}}"
silent: true