1
0
mirror of https://github.com/go-task/task.git synced 2024-12-14 10:52:43 +02:00
task/testdata/watcher_interval/Taskfile.yaml
ilewin c2f20465ab Updated test for file watcher interval param
Updated Interval Setting Priority
2022-10-07 08:56:13 +02:00

17 lines
193 B
YAML

# https://taskfile.dev
version: '3'
vars:
GREETING: Hello, World!
interval: "30ms"
tasks:
default:
sources:
- "src/*"
cmds:
- echo "{{.GREETING}}"
silent: false