Dancer2-Plugin-JsonApi/Taskfile.yaml

18 lines
305 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
TARGET_BRANCH: main
tasks:
tidy:
cmds:
- git diff-ls --diff-filter=ACMR {{.TARGET_BRANCH}} | grep -e '\.pm$\|\.t$|\.pod$' | xargs -IX perltidy -b X
default:
cmds:
- echo "{{.GREETING}}"
silent: true