Merge branch 'master' into aliases

This commit is contained in:
Andrey Nering
2022-10-14 18:44:56 -03:00
14 changed files with 148 additions and 7 deletions

1
testdata/watcher_interval/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
src/*

16
testdata/watcher_interval/Taskfile.yaml vendored Normal file
View File

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