rum-goggles/v1/vendor/github.com/wailsapp/wails/v2/Taskfile.yaml
2024-02-23 12:10:39 -05:00

29 lines
492 B
YAML

# https://taskfile.dev
version: "3"
tasks:
download:
summary: Run go mod tidy
cmds:
- go mod tidy
lint:
summary: Run golangci-lint
cmds:
- golangci-lint run ./... --timeout=3m -v
release:
summary: Release a new version of Task. Call with `task v2:release -- <version>`
dir: tools/release
cmds:
- go run release.go {{.CLI_ARGS}}
format:md:
cmds:
- npx prettier --write "**/*.md"
format:
cmds:
- task: format:md