Dancer2-Plugin-JsonApi/Taskfile.yaml

18 lines
281 B
YAML
Raw Normal View History

2023-11-10 20:29:32 +00:00
# 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