vss/Taskfile.yml
zztkm d109fd9ed0 🚧
2022-07-27 14:54:44 +09:00

31 lines
451 B
YAML

# https://taskfile.dev
version: '3'
tasks:
doc:
desc: Update module document
cmds:
- v doc -o docs/ -f markdown .
- mv docs/index.md docs/vdotenv.md
test:
desc: Run test
cmds:
- v test .
vet:
desc: Report suspicious code constructs
cmds:
- v vet *.v
format:
desc: Format .v files
cmds:
- v fmt -w *.v
clean:
desc: Clean test files
cmds:
- rm -rf dist/