feat(task): tasks can be internal (not accessible from cli)

This commit is contained in:
Pete Davison
2022-07-22 02:15:35 +00:00
parent c172185a24
commit 6f8f1f1409
7 changed files with 78 additions and 3 deletions

16
testdata/internal_task/Taskfile.yml vendored Normal file
View File

@@ -0,0 +1,16 @@
version: '3'
tasks:
task-1:
cmds:
- task: task-3
task-2:
deps:
- task-3
task-3:
internal: true
cmds:
- echo "Hello, World!"