Dancer2-Plugin-JsonApi/Taskfile.yaml
2023-11-10 15:29:32 -05:00

18 lines
281 B
YAML

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