mirror of
https://github.com/testthedocs/awesome-docs.git
synced 2026-03-10 16:02:03 -05:00
25 lines
356 B
YAML
25 lines
356 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
vars:
|
|
GREETING: Hello, World!
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- echo "Documentation Tool Kit"
|
|
- task -l
|
|
silent: true
|
|
|
|
nix:update:
|
|
desc: "Updating flake and its packages"
|
|
cmds:
|
|
- echo "Updating flake"
|
|
- nix flake update
|
|
|
|
vale:sync:
|
|
desc: Sync vale
|
|
cmds:
|
|
- vale sync
|