go-task-bin 3.33.1__tar.gz → 3.35.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of go-task-bin might be problematic. Click here for more details.

Files changed (659) hide show
  1. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/PKG-INFO +1 -1
  2. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/pdm_build.py +1 -1
  3. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/pyproject.toml +1 -1
  4. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/issue-experiment.yml +7 -7
  5. go_task_bin-3.35.1/task/.github/workflows/lint.yml +43 -0
  6. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/release.yml +1 -1
  7. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/test.yml +1 -1
  8. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/upload-source-documents.yml +1 -1
  9. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/CHANGELOG.md +62 -1
  10. go_task_bin-3.35.1/task/args/args.go +30 -0
  11. go_task_bin-3.35.1/task/args/args_test.go +108 -0
  12. go_task_bin-3.35.1/task/cmd/task/task.go +221 -0
  13. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/completion/zsh/_task +1 -1
  14. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/api_reference.md +18 -4
  15. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/changelog.md +62 -1
  16. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/deprecations/template.md +9 -4
  17. go_task_bin-3.35.1/task/docs/docs/deprecations/version_2_schema.md +33 -0
  18. go_task_bin-3.35.1/task/docs/docs/experiments/any_variables.mdx +346 -0
  19. go_task_bin-3.35.1/task/docs/docs/experiments/experiments.md +131 -0
  20. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/experiments/gentle_force.md +28 -5
  21. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/experiments/remote_taskfiles.md +17 -3
  22. go_task_bin-3.35.1/task/docs/docs/experiments/template.md +42 -0
  23. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/faq.md +1 -1
  24. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/installation.md +22 -21
  25. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/styleguide.md +24 -37
  26. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/taskfile_versions.md +9 -9
  27. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/usage.md +93 -23
  28. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docusaurus.config.ts +6 -1
  29. {go_task_bin-3.33.1/task/docs/i18n/pt-BR → go_task_bin-3.35.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  30. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  31. go_task_bin-3.35.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  32. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/community.md +2 -2
  33. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  34. go_task_bin-3.35.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  35. go_task_bin-3.35.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  36. {go_task_bin-3.33.1/task/docs/docs → go_task_bin-3.35.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current}/experiments/any_variables.md +28 -5
  37. go_task_bin-3.35.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  38. {go_task_bin-3.33.1/task/docs/i18n/ru-RU → go_task_bin-3.35.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  39. {go_task_bin-3.33.1/task/docs/i18n/fr-FR → go_task_bin-3.35.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  40. {go_task_bin-3.33.1/task/docs/i18n/pt-BR → go_task_bin-3.35.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  41. go_task_bin-3.35.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  42. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/faq.md +1 -1
  43. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  44. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/intro.md +3 -3
  45. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  46. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  47. {go_task_bin-3.33.1/task/docs/i18n/fr-FR → go_task_bin-3.35.1/task/docs/i18n/es-ES}/docusaurus-plugin-content-docs/current/usage.md +1 -1
  48. {go_task_bin-3.33.1/task/docs/i18n/ja-JP → go_task_bin-3.35.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  49. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  50. go_task_bin-3.35.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  51. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/community.md +2 -2
  52. {go_task_bin-3.33.1/task/docs/i18n/pt-BR → go_task_bin-3.35.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  53. go_task_bin-3.35.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  54. go_task_bin-3.35.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  55. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/donate.md +1 -1
  56. go_task_bin-3.35.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  57. go_task_bin-3.35.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  58. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  59. {go_task_bin-3.33.1/task/docs/i18n/pt-BR → go_task_bin-3.35.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  60. {go_task_bin-3.33.1/task/docs/i18n/es-ES → go_task_bin-3.35.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  61. go_task_bin-3.35.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  62. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/faq.md +1 -1
  63. {go_task_bin-3.33.1/task/docs/i18n/tr-TR → go_task_bin-3.35.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  64. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/intro.md +3 -3
  65. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  66. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/taskfile_versions.md +11 -11
  67. {go_task_bin-3.33.1/task/docs/i18n/es-ES → go_task_bin-3.35.1/task/docs/i18n/fr-FR}/docusaurus-plugin-content-docs/current/usage.md +1 -1
  68. {go_task_bin-3.33.1/task/docs/i18n/fr-FR → go_task_bin-3.35.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  69. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/api_reference.md +53 -52
  70. go_task_bin-3.35.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  71. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/community.md +2 -2
  72. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  73. go_task_bin-3.35.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  74. go_task_bin-3.35.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  75. go_task_bin-3.35.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  76. go_task_bin-3.35.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  77. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  78. {go_task_bin-3.33.1/task/docs/i18n/es-ES → go_task_bin-3.35.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  79. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  80. go_task_bin-3.35.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  81. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/faq.md +1 -1
  82. {go_task_bin-3.33.1/task/docs/i18n/fr-FR → go_task_bin-3.35.1/task/docs/i18n/ja-JP}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  83. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/intro.md +3 -3
  84. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  85. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  86. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/usage.md +5 -5
  87. {go_task_bin-3.33.1/task/docs/i18n/es-ES → go_task_bin-3.35.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +3 -3
  88. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  89. go_task_bin-3.35.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  90. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/community.md +2 -2
  91. {go_task_bin-3.33.1/task/docs/i18n/tr-TR → go_task_bin-3.35.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  92. go_task_bin-3.35.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  93. go_task_bin-3.35.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  94. go_task_bin-3.35.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  95. go_task_bin-3.35.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  96. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  97. {go_task_bin-3.33.1/task/docs/i18n/ja-JP → go_task_bin-3.35.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +21 -6
  98. {go_task_bin-3.33.1/task/docs/i18n/fr-FR → go_task_bin-3.35.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +13 -4
  99. go_task_bin-3.35.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  100. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/faq.md +1 -1
  101. {go_task_bin-3.33.1/task/docs/i18n/ja-JP → go_task_bin-3.35.1/task/docs/i18n/pt-BR}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  102. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/intro.md +3 -3
  103. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  104. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  105. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/usage.md +1 -1
  106. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  107. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  108. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  109. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/community.md +2 -2
  110. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  111. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  112. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  113. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  114. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  115. {go_task_bin-3.33.1/task/docs/i18n/es-ES → go_task_bin-3.35.1/task/docs/i18n/ru-RU}/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  116. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +36 -0
  117. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +66 -0
  118. go_task_bin-3.35.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  119. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/faq.md +1 -1
  120. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  121. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/intro.md +3 -3
  122. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  123. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/taskfile_versions.md +11 -11
  124. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/usage.md +1 -1
  125. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  126. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  127. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  128. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/community.md +2 -2
  129. {go_task_bin-3.33.1/task/docs/i18n/fr-FR → go_task_bin-3.35.1/task/docs/i18n/tr-TR}/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  130. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  131. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  132. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  133. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  134. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/experiments.md +5 -4
  135. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +36 -0
  136. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +66 -0
  137. go_task_bin-3.35.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  138. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/faq.md +1 -1
  139. {go_task_bin-3.33.1/task/docs/i18n/pt-BR → go_task_bin-3.35.1/task/docs/i18n/tr-TR}/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  140. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/intro.md +3 -3
  141. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  142. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/taskfile_versions.md +8 -8
  143. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/usage.md +1 -1
  144. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +93 -0
  145. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/api_reference.md +1 -0
  146. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +573 -0
  147. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/community.md +2 -2
  148. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/contributing.md +3 -3
  149. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/template.md +22 -0
  150. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +25 -0
  151. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/any_variables.md +206 -0
  152. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/any_variables.mdx +162 -0
  153. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/experiments.md +79 -0
  154. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +36 -0
  155. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +66 -0
  156. go_task_bin-3.35.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/template.md +39 -0
  157. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/faq.md +1 -1
  158. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/integrations.md +3 -3
  159. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/intro.md +3 -3
  160. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/styleguide.md +0 -13
  161. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/taskfile_versions.md +11 -11
  162. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/usage.md +1 -1
  163. go_task_bin-3.35.1/task/docs/static/js/carbon.js +31 -0
  164. go_task_bin-3.35.1/task/docs/static/schema.json +665 -0
  165. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/yarn.lock +3 -3
  166. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/errors/errors.go +1 -1
  167. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/errors/errors_task.go +3 -3
  168. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/errors/errors_taskfile.go +29 -16
  169. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/go.mod +6 -7
  170. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/go.sum +19 -14
  171. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/hash.go +2 -2
  172. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/help.go +5 -12
  173. go_task_bin-3.33.1/task/internal/compiler/v3/compiler_v3.go → go_task_bin-3.35.1/task/internal/compiler/compiler.go +53 -42
  174. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/compiler/env.go +5 -5
  175. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/env/env.go +2 -2
  176. go_task_bin-3.35.1/task/internal/exp/maps.go +26 -0
  177. go_task_bin-3.35.1/task/internal/experiments/experiments.go +106 -0
  178. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/checker.go +5 -5
  179. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/glob.go +2 -2
  180. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/sources_checksum.go +6 -6
  181. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/sources_none.go +4 -4
  182. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/sources_timestamp.go +5 -5
  183. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/status.go +2 -2
  184. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/task.go +2 -2
  185. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/task_test.go +17 -17
  186. go_task_bin-3.35.1/task/internal/flags/flags.go +151 -0
  187. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/hash/hash.go +5 -5
  188. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/logger/logger.go +1 -1
  189. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/mocks/sources_checkable.go +24 -23
  190. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/mocks/status_checkable.go +10 -10
  191. {go_task_bin-3.33.1/task/internal/orderedmap → go_task_bin-3.35.1/task/internal/omap}/orderedmap.go +10 -10
  192. {go_task_bin-3.33.1/task/internal/orderedmap → go_task_bin-3.35.1/task/internal/omap}/orderedmap_test.go +3 -3
  193. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/output/output.go +4 -4
  194. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/output/output_test.go +4 -4
  195. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/slicesext/slicesext.go +3 -3
  196. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/sort/sorter.go +5 -5
  197. go_task_bin-3.35.1/task/internal/sort/sorter_test.go +77 -0
  198. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/summary/summary.go +12 -12
  199. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/summary/summary_test.go +22 -22
  200. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/templater/funcs.go +20 -0
  201. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/templater/templater.go +16 -18
  202. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/package-lock.json +1 -1
  203. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/package.json +1 -1
  204. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/precondition.go +2 -2
  205. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/requires.go +2 -2
  206. go_task_bin-3.35.1/task/setup.go +253 -0
  207. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/status.go +3 -3
  208. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/task.go +47 -32
  209. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/task_test.go +207 -220
  210. go_task_bin-3.35.1/task/taskfile/ast/call.go +9 -0
  211. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/cmd.go +1 -1
  212. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/dep.go +4 -3
  213. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/for.go +1 -1
  214. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/glob.go +1 -1
  215. go_task_bin-3.33.1/task/taskfile/included_taskfile.go → go_task_bin-3.35.1/task/taskfile/ast/include.go +49 -63
  216. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/location.go +1 -1
  217. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/output.go +1 -1
  218. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/platforms.go +1 -1
  219. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/platforms_test.go +1 -1
  220. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/precondition.go +1 -1
  221. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/precondition_test.go +10 -10
  222. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/requires.go +1 -1
  223. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/task.go +27 -3
  224. go_task_bin-3.35.1/task/taskfile/ast/taskfile.go +98 -0
  225. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/taskfile_test.go +24 -24
  226. go_task_bin-3.35.1/task/taskfile/ast/tasks.go +146 -0
  227. {go_task_bin-3.33.1/task/taskfile → go_task_bin-3.35.1/task/taskfile/ast}/var.go +56 -13
  228. {go_task_bin-3.33.1/task/taskfile/read → go_task_bin-3.35.1/task/taskfile}/cache.go +1 -1
  229. {go_task_bin-3.33.1/task/taskfile/read → go_task_bin-3.35.1/task/taskfile}/dotenv.go +6 -6
  230. go_task_bin-3.35.1/task/taskfile/node.go +94 -0
  231. {go_task_bin-3.33.1/task/taskfile/read → go_task_bin-3.35.1/task/taskfile}/node_base.go +1 -1
  232. {go_task_bin-3.33.1/task/taskfile/read → go_task_bin-3.35.1/task/taskfile}/node_file.go +5 -1
  233. {go_task_bin-3.33.1/task/taskfile/read → go_task_bin-3.35.1/task/taskfile}/node_http.go +5 -1
  234. go_task_bin-3.35.1/task/taskfile/node_stdin.go +46 -0
  235. go_task_bin-3.35.1/task/taskfile/reader.go +289 -0
  236. go_task_bin-3.35.1/task/taskfile/taskfile.go +88 -0
  237. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/concurrency/Taskfile.yml +1 -1
  238. go_task_bin-3.35.1/task/testdata/special_vars/Taskfile.yml +13 -0
  239. go_task_bin-3.35.1/task/testdata/special_vars/included/Taskfile.yml +8 -0
  240. go_task_bin-3.35.1/task/testdata/user_working_dir_with_includes/somedir/.keep +0 -0
  241. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/vars/any/Taskfile.yml +4 -2
  242. go_task_bin-3.35.1/task/testdata/vars/any2/Taskfile.yml +91 -0
  243. go_task_bin-3.35.1/task/testdata/vars/any2/example.json +18 -0
  244. go_task_bin-3.35.1/task/testdata/vars/any2/example.yaml +9 -0
  245. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/version/v1/Taskfile.yml +1 -1
  246. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/version/v2/Taskfile.yml +1 -1
  247. go_task_bin-3.35.1/task/testdata/version/v3/Taskfile.yml +9 -0
  248. go_task_bin-3.35.1/task/testdata/wildcards/Taskfile.yml +25 -0
  249. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/variables.go +63 -49
  250. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/watch.go +7 -7
  251. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/watch_test.go +2 -2
  252. go_task_bin-3.33.1/task/.github/workflows/lint.yml +0 -24
  253. go_task_bin-3.33.1/task/args/args.go +0 -56
  254. go_task_bin-3.33.1/task/args/args_test.go +0 -219
  255. go_task_bin-3.33.1/task/cmd/task/task.go +0 -350
  256. go_task_bin-3.33.1/task/docs/docs/deprecations/version_2_schema.md +0 -26
  257. go_task_bin-3.33.1/task/docs/docs/experiments/experiments.md +0 -127
  258. go_task_bin-3.33.1/task/docs/docs/experiments/template.md +0 -20
  259. go_task_bin-3.33.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  260. go_task_bin-3.33.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  261. go_task_bin-3.33.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  262. go_task_bin-3.33.1/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  263. go_task_bin-3.33.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  264. go_task_bin-3.33.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  265. go_task_bin-3.33.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  266. go_task_bin-3.33.1/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  267. go_task_bin-3.33.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  268. go_task_bin-3.33.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  269. go_task_bin-3.33.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  270. go_task_bin-3.33.1/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  271. go_task_bin-3.33.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  272. go_task_bin-3.33.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  273. go_task_bin-3.33.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  274. go_task_bin-3.33.1/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  275. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +0 -93
  276. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  277. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  278. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  279. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +0 -21
  280. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +0 -57
  281. go_task_bin-3.33.1/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  282. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +0 -93
  283. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  284. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  285. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  286. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +0 -21
  287. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +0 -57
  288. go_task_bin-3.33.1/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  289. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/2023-09-02-introducing-experiments.md +0 -93
  290. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/changelog.md +0 -539
  291. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/template.md +0 -17
  292. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/version_2_schema.md +0 -22
  293. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/experiments.md +0 -78
  294. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/gentle_force.md +0 -21
  295. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/remote_taskfiles.md +0 -57
  296. go_task_bin-3.33.1/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/template.md +0 -20
  297. go_task_bin-3.33.1/task/docs/static/js/carbon.js +0 -29
  298. go_task_bin-3.33.1/task/docs/static/schema.json +0 -649
  299. go_task_bin-3.33.1/task/internal/compiler/compiler.go +0 -15
  300. go_task_bin-3.33.1/task/internal/compiler/v2/compiler_v2.go +0 -138
  301. go_task_bin-3.33.1/task/internal/experiments/experiments.go +0 -58
  302. go_task_bin-3.33.1/task/internal/sort/sorter_test.go +0 -77
  303. go_task_bin-3.33.1/task/setup.go +0 -356
  304. go_task_bin-3.33.1/task/taskfile/call.go +0 -9
  305. go_task_bin-3.33.1/task/taskfile/merge.go +0 -80
  306. go_task_bin-3.33.1/task/taskfile/read/node.go +0 -44
  307. go_task_bin-3.33.1/task/taskfile/read/taskfile.go +0 -396
  308. go_task_bin-3.33.1/task/taskfile/read/taskvars.go +0 -45
  309. go_task_bin-3.33.1/task/taskfile/taskfile.go +0 -89
  310. go_task_bin-3.33.1/task/taskfile/tasks.go +0 -54
  311. go_task_bin-3.33.1/task/testdata/incorrect_includes/Taskfile.yml +0 -10
  312. go_task_bin-3.33.1/task/testdata/incorrect_includes/included/Taskfile.yml +0 -6
  313. go_task_bin-3.33.1/task/testdata/special_vars/Taskfile.yml +0 -19
  314. go_task_bin-3.33.1/task/testdata/special_vars/included/Taskfile.yml +0 -9
  315. go_task_bin-3.33.1/task/testdata/vars/v2/Taskfile.yml +0 -58
  316. go_task_bin-3.33.1/task/testdata/vars/v2/Taskvars.yml +0 -14
  317. go_task_bin-3.33.1/task/testdata/vars/v2/multiline/Taskfile.yml +0 -45
  318. go_task_bin-3.33.1/task/testdata/vars/v3/.gitignore +0 -1
  319. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/LICENSE +0 -0
  320. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/README.md +0 -0
  321. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/go_task_bin/__init__.py +0 -0
  322. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.editorconfig +0 -0
  323. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.git +0 -0
  324. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.gitattributes +0 -0
  325. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/CODE_OF_CONDUCT.md +0 -0
  326. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/CONTRIBUTING.md +0 -0
  327. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/FUNDING.yml +0 -0
  328. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  329. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/ISSUE_TEMPLATE/config.yml +0 -0
  330. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  331. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/dependabot.yml +0 -0
  332. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/pull_request_template.md +0 -0
  333. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/issue-awaiting-response.yml +0 -0
  334. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/issue-closed.yml +0 -0
  335. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/issue-needs-triage.yml +0 -0
  336. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.github/workflows/sync-translated-documents.yml +0 -0
  337. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.gitignore +0 -0
  338. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.golangci.yml +0 -0
  339. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.goreleaser.yml +0 -0
  340. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.mockery.yaml +0 -0
  341. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.nvmrc +0 -0
  342. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.prettierrc.yml +0 -0
  343. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/.vscode/settings-sample.json +0 -0
  344. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/LICENSE +0 -0
  345. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/README.md +0 -0
  346. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/Taskfile.yml +0 -0
  347. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/bin/.keep +0 -0
  348. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/cmd/release/main.go +0 -0
  349. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/cmd/sleepit/sleepit.go +0 -0
  350. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/completion/bash/task.bash +0 -0
  351. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/completion/fish/task.fish +0 -0
  352. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/completion/ps/task.ps1 +0 -0
  353. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/concurrency.go +0 -0
  354. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/.gitignore +0 -0
  355. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/.nojekyll +0 -0
  356. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/Taskfile.yml +0 -0
  357. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/babel.config.ts +0 -0
  358. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/blog/2023-09-02-introducing-experiments.md +0 -0
  359. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/blog/authors.yml +0 -0
  360. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/constants.ts +0 -0
  361. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/crowdin.yml +0 -0
  362. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/community.md +0 -0
  363. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/contributing.md +0 -0
  364. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/deprecations/deprecations.md +0 -0
  365. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/donate.md +0 -0
  366. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/integrations.md +0 -0
  367. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/intro.md +0 -0
  368. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/releasing.md +0 -0
  369. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/docs/translate.md +0 -0
  370. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/en/code.json +0 -0
  371. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/en/docusaurus-plugin-content-docs/current.json +0 -0
  372. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/en/docusaurus-theme-classic/footer.json +0 -0
  373. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/en/docusaurus-theme-classic/navbar.json +0 -0
  374. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/code.json +0 -0
  375. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-blog/authors.yml +0 -0
  376. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  377. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/donate.md +0 -0
  378. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  379. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/installation.md +0 -0
  380. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  381. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current/translate.md +0 -0
  382. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-plugin-content-docs/current.json +0 -0
  383. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-theme-classic/footer.json +0 -0
  384. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/es-ES/docusaurus-theme-classic/navbar.json +0 -0
  385. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/code.json +0 -0
  386. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-blog/authors.yml +0 -0
  387. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  388. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  389. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/installation.md +0 -0
  390. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  391. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current/translate.md +0 -0
  392. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-plugin-content-docs/current.json +0 -0
  393. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-theme-classic/footer.json +0 -0
  394. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/fr-FR/docusaurus-theme-classic/navbar.json +0 -0
  395. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/code.json +0 -0
  396. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-blog/authors.yml +0 -0
  397. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  398. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/donate.md +0 -0
  399. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  400. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/installation.md +0 -0
  401. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  402. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current/translate.md +0 -0
  403. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-plugin-content-docs/current.json +0 -0
  404. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-theme-classic/footer.json +0 -0
  405. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ja-JP/docusaurus-theme-classic/navbar.json +0 -0
  406. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/code.json +0 -0
  407. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-blog/authors.yml +0 -0
  408. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  409. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/donate.md +0 -0
  410. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  411. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/installation.md +0 -0
  412. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  413. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current/translate.md +0 -0
  414. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-plugin-content-docs/current.json +0 -0
  415. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-theme-classic/footer.json +0 -0
  416. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/pt-BR/docusaurus-theme-classic/navbar.json +0 -0
  417. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/code.json +0 -0
  418. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-blog/authors.yml +0 -0
  419. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  420. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/donate.md +0 -0
  421. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  422. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/installation.md +0 -0
  423. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  424. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current/translate.md +0 -0
  425. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-plugin-content-docs/current.json +0 -0
  426. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-theme-classic/footer.json +0 -0
  427. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/ru-RU/docusaurus-theme-classic/navbar.json +0 -0
  428. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/code.json +0 -0
  429. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-blog/authors.yml +0 -0
  430. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  431. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/donate.md +0 -0
  432. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  433. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/installation.md +0 -0
  434. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  435. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current/translate.md +0 -0
  436. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-plugin-content-docs/current.json +0 -0
  437. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-theme-classic/footer.json +0 -0
  438. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/tr-TR/docusaurus-theme-classic/navbar.json +0 -0
  439. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/code.json +0 -0
  440. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-blog/authors.yml +0 -0
  441. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/deprecations/deprecations.md +0 -0
  442. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/donate.md +0 -0
  443. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/experiments/workflow.md +0 -0
  444. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation.md +0 -0
  445. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releasing.md +0 -0
  446. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current/translate.md +0 -0
  447. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-plugin-content-docs/current.json +0 -0
  448. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-theme-classic/footer.json +0 -0
  449. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/i18n/zh-Hans/docusaurus-theme-classic/navbar.json +0 -0
  450. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/package.json +0 -0
  451. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/prettier.config.js +0 -0
  452. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/sidebars.ts +0 -0
  453. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/api/crowdin.js +0 -0
  454. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/components/.keep +0 -0
  455. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/css/carbon.css +0 -0
  456. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/css/custom.css +0 -0
  457. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/pages/.keep +0 -0
  458. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/themes/prismDark.js +0 -0
  459. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/src/themes/prismLight.js +0 -0
  460. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/.nojekyll +0 -0
  461. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/CNAME +0 -0
  462. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/appwrite.svg +0 -0
  463. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/favicon.ico +0 -0
  464. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/logo.png +0 -0
  465. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/logo.svg +0 -0
  466. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/logo_mono.svg +0 -0
  467. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/og-image.png +0 -0
  468. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/img/pix.png +0 -0
  469. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/static/install.sh +0 -0
  470. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/docs/tsconfig.json +0 -0
  471. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/init.go +0 -0
  472. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/install-task.sh +0 -0
  473. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/deepcopy/deepcopy.go +0 -0
  474. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/editors/output.go +0 -0
  475. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/execext/devnull.go +0 -0
  476. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/execext/exec.go +0 -0
  477. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/filepathext/filepathext.go +0 -0
  478. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/sources.go +0 -0
  479. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/fingerprint/sources_checksum_test.go +0 -0
  480. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/goext/meta.go +0 -0
  481. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/output/group.go +0 -0
  482. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/output/interleaved.go +0 -0
  483. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/output/prefixed.go +0 -0
  484. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/sysinfo/uid.go +0 -0
  485. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/sysinfo/uid_win.go +0 -0
  486. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/term/term.go +0 -0
  487. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/internal/version/version.go +0 -0
  488. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/signals.go +0 -0
  489. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/signals_test.go +0 -0
  490. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/alias/Taskfile.yml +0 -0
  491. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/alias/Taskfile2.yml +0 -0
  492. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/alias/alias-summary.txt +0 -0
  493. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/alias/alias.txt +0 -0
  494. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/checksum/.gitignore +0 -0
  495. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/checksum/Taskfile.yml +0 -0
  496. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/checksum/ignore_me.txt +0 -0
  497. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/checksum/source.txt +0 -0
  498. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/cyclic/Taskfile.yml +0 -0
  499. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/deferred/Taskfile.yml +0 -0
  500. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/deps/.gitignore +0 -0
  501. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/deps/Taskfile.yml +0 -0
  502. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/Taskfile.yml +0 -0
  503. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/dynamic_var/.gitignore +0 -0
  504. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/dynamic_var/Taskfile.yml +0 -0
  505. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/dynamic_var/subdirectory/Taskfile.yml +0 -0
  506. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/dynamic_var_on_created_dir/Taskfile.yml +0 -0
  507. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/explicit_doesnt_exist/Taskfile.yml +0 -0
  508. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/explicit_exists/Taskfile.yml +0 -0
  509. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dir/explicit_exists/exists/.keep +0 -0
  510. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/.gitignore +0 -0
  511. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/default/Taskfile.yml +0 -0
  512. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/env_var_in_path/.env.testing +0 -0
  513. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/env_var_in_path/Taskfile.yml +0 -0
  514. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/error_included_envs/Taskfile.yml +0 -0
  515. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/include1/.env +0 -0
  516. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/include1/Taskfile.yml +0 -0
  517. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/include1/envs/.env +0 -0
  518. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/local_env_in_path/.env.testing +0 -0
  519. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/local_env_in_path/Taskfile.yml +0 -0
  520. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/local_var_in_path/.env.testing +0 -0
  521. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/local_var_in_path/Taskfile.yml +0 -0
  522. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv/missing_env/Taskfile.yml +0 -0
  523. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv_task/default/.env +0 -0
  524. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv_task/default/.gitignore +0 -0
  525. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dotenv_task/default/Taskfile.yml +0 -0
  526. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dry/Taskfile.yml +0 -0
  527. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dry_checksum/Taskfile.yml +0 -0
  528. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/dry_checksum/source.txt +0 -0
  529. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/empty_task/Taskfile.yml +0 -0
  530. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/env/.gitignore +0 -0
  531. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/env/Taskfile.yml +0 -0
  532. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/error_code/Taskfile.yml +0 -0
  533. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +0 -0
  534. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/evaluate_symlinks_in_paths/shared/b +0 -0
  535. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/evaluate_symlinks_in_paths/shared/inner_shared/c +0 -0
  536. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/evaluate_symlinks_in_paths/src/a +0 -0
  537. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/exit_immediately/Taskfile.yml +0 -0
  538. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/expand/Taskfile.yml +0 -0
  539. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/file_names/.gitignore +0 -0
  540. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/file_names/Taskfile.dist.yaml/Taskfile.dist.yaml +0 -0
  541. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/file_names/Taskfile.dist.yml/Taskfile.dist.yml +0 -0
  542. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/file_names/Taskfile.yaml/Taskfile.yaml +0 -0
  543. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/file_names/Taskfile.yml/Taskfile.yml +0 -0
  544. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/for/Taskfile.yml +0 -0
  545. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/for/bar.txt +0 -0
  546. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/for/foo.txt +0 -0
  547. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/force/Taskfile.yml +0 -0
  548. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/generates/.gitignore +0 -0
  549. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/generates/Taskfile.yml +0 -0
  550. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/generates/sub/.keep +0 -0
  551. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_errors/Taskfile.yml +0 -0
  552. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_nil_elements/cmds/Taskfile.yml +0 -0
  553. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_nil_elements/deps/Taskfile.yml +0 -0
  554. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_nil_elements/includes/Taskfile.yml +0 -0
  555. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_nil_elements/includes/inc.yml +0 -0
  556. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_nil_elements/preconditions/Taskfile.yml +0 -0
  557. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/ignore_signals/Taskfile.yml +0 -0
  558. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/include_with_vars/Taskfile.yml +0 -0
  559. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/include_with_vars/include/Taskfile.include.yml +0 -0
  560. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/include_with_vars_multi_level/Taskfile.yml +0 -0
  561. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/include_with_vars_multi_level/bar/Taskfile.yml +0 -0
  562. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/include_with_vars_multi_level/foo/Taskfile.yml +0 -0
  563. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/include_with_vars_multi_level/lib/Taskfile.yml +0 -0
  564. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/.gitignore +0 -0
  565. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/Taskfile.yml +0 -0
  566. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/Taskfile2.yml +0 -0
  567. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/Taskfile_darwin.yml +0 -0
  568. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/Taskfile_linux.yml +0 -0
  569. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/Taskfile_windows.yml +0 -0
  570. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/included/Taskfile.yml +0 -0
  571. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/module1/Taskfile.yml +0 -0
  572. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes/module2/Taskfile.yml +0 -0
  573. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_call_root_task/.gitignore +0 -0
  574. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_call_root_task/Taskfile.yml +0 -0
  575. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_call_root_task/Taskfile2.yml +0 -0
  576. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_cycle/Taskfile.yml +0 -0
  577. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_cycle/one/Taskfile.yml +0 -0
  578. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_cycle/one/two/Taskfile.yml +0 -0
  579. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_deps/.gitignore +0 -0
  580. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_deps/Taskfile.yml +0 -0
  581. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_deps/Taskfile2.yml +0 -0
  582. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_empty/.gitignore +0 -0
  583. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_empty/Taskfile.yml +0 -0
  584. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_empty/Taskfile2.yml +0 -0
  585. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_incorrect/Taskfile.yml +0 -0
  586. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_incorrect/incomplete.yml +0 -0
  587. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_internal/Taskfile.yml +0 -0
  588. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_internal/Taskfile2.yml +0 -0
  589. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_interpolation/Taskfile.yml +0 -0
  590. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_interpolation/included/Taskfile.yml +0 -0
  591. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/Taskfile.yml +0 -0
  592. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/called_one.txt +0 -0
  593. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/called_three.txt +0 -0
  594. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/called_two.txt +0 -0
  595. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/one/Taskfile.yml +0 -0
  596. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/one/two/Taskfile.yml +0 -0
  597. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_multi_level/one/two/three/Taskfile.yml +0 -0
  598. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_optional/.gitignore +0 -0
  599. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_optional/Taskfile.yml +0 -0
  600. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_optional_explicit_false/Taskfile.yml +0 -0
  601. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_optional_implicit_false/Taskfile.yml +0 -0
  602. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_rel_path/Taskfile.yml +0 -0
  603. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_rel_path/common/Taskfile.yml +0 -0
  604. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_rel_path/included/Taskfile.yml +0 -0
  605. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_shadowed_default/Taskfile.yml +0 -0
  606. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_shadowed_default/Taskfile2.yml +0 -0
  607. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_shadowed_default/file.txt +0 -0
  608. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_unshadowed_default/Taskfile.yml +0 -0
  609. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_unshadowed_default/Taskfile2.yml +0 -0
  610. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_unshadowed_default/file.txt +0 -0
  611. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_yaml/.gitignore +0 -0
  612. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_yaml/Custom.ext +0 -0
  613. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_yaml/included/Taskfile.yaml +0 -0
  614. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/includes_yaml/included/custom.yaml +0 -0
  615. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/init/.gitignore +0 -0
  616. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/internal_task/Taskfile.yml +0 -0
  617. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/label_list/Taskfile.yml +0 -0
  618. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/label_status/Taskfile.yml +0 -0
  619. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/label_summary/Taskfile.yml +0 -0
  620. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/label_uptodate/Taskfile.yml +0 -0
  621. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/label_var/Taskfile.yml +0 -0
  622. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/list_desc_interpolation/Taskfile.yml +0 -0
  623. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/list_mixed_desc/Taskfile.yml +0 -0
  624. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/output_group/Taskfile.yml +0 -0
  625. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/output_group_error_only/Taskfile.yml +0 -0
  626. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/params/.gitignore +0 -0
  627. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/params/Taskfile.yml +0 -0
  628. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/platforms/Taskfile.yml +0 -0
  629. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/precondition/Taskfile.yml +0 -0
  630. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/precondition/foo.txt +0 -0
  631. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/prompt/Taskfile.yml +0 -0
  632. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/run/.gitignore +0 -0
  633. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/run/Taskfile.yml +0 -0
  634. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/shopts/command_level/Taskfile.yml +0 -0
  635. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/shopts/global_level/Taskfile.yml +0 -0
  636. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/shopts/task_level/Taskfile.yml +0 -0
  637. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/short_task_notation/Taskfile.yml +0 -0
  638. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/silent/Taskfile.yml +0 -0
  639. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/single_cmd_dep/.gitignore +0 -0
  640. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/single_cmd_dep/Taskfile.yml +0 -0
  641. {go_task_bin-3.33.1/task/testdata/taskfile_walk/foo/bar → go_task_bin-3.35.1/task/testdata/special_vars/subdir}/.gitkeep +0 -0
  642. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/split_args/Taskfile.yml +0 -0
  643. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/status/.gitignore +0 -0
  644. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/status/Taskfile.yml +0 -0
  645. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/status_vars/.gitignore +0 -0
  646. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/status_vars/Taskfile.yml +0 -0
  647. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/status_vars/source.txt +0 -0
  648. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/summary/Taskfile.yml +0 -0
  649. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/summary/task-with-summary.txt +0 -0
  650. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/taskfile_walk/Taskfile.yml +0 -0
  651. /go_task_bin-3.33.1/task/testdata/user_working_dir_with_includes/somedir/.keep → /go_task_bin-3.35.1/task/testdata/taskfile_walk/foo/bar/.gitkeep +0 -0
  652. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/user_working_dir/Taskfile.yml +0 -0
  653. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/user_working_dir_with_includes/Taskfile.yml +0 -0
  654. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/user_working_dir_with_includes/included/Taskfile.yml +0 -0
  655. {go_task_bin-3.33.1/task/testdata/vars/v3 → go_task_bin-3.35.1/task/testdata/vars}/.env +0 -0
  656. {go_task_bin-3.33.1/task/testdata/vars/v2 → go_task_bin-3.35.1/task/testdata/vars}/.gitignore +0 -0
  657. {go_task_bin-3.33.1/task/testdata/vars/v3 → go_task_bin-3.35.1/task/testdata/vars}/Taskfile.yml +0 -0
  658. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/watcher_interval/.gitignore +0 -0
  659. {go_task_bin-3.33.1 → go_task_bin-3.35.1}/task/testdata/watcher_interval/Taskfile.yaml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: go-task-bin
3
- Version: 3.33.1
3
+ Version: 3.35.1
4
4
  Summary: task - A task runner / simpler Make alternative written in Go
5
5
  Keywords: build build-tool devops go make makefile runner task task-runner taskfile tool
6
6
  Author-Email: dowon <ks2515@naver.com>
@@ -5,7 +5,7 @@ import sys
5
5
  from pathlib import Path
6
6
 
7
7
  NAME = "task"
8
- VERSION = "3.33.1"
8
+ VERSION = "3.35.1"
9
9
 
10
10
 
11
11
  def is_windows():
@@ -1,7 +1,7 @@
1
1
  [project]
2
2
  name = "go-task-bin"
3
3
  description = "task - A task runner / simpler Make alternative written in Go"
4
- version = "3.33.1"
4
+ version = "3.35.1"
5
5
  authors = [
6
6
  { name = "dowon", email = "ks2515@naver.com" },
7
7
  ]
@@ -17,7 +17,7 @@ jobs:
17
17
  issue_number: context.issue.number,
18
18
  owner: context.repo.owner,
19
19
  repo: context.repo.repo,
20
- body: 'This issue has been marked as an experiment proposal! :test_tube: It will now enter a period of consultation during which we encourage the community to provide feedback on the proposed design. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
20
+ body: 'This issue has been marked as an experiment proposal! :test_tube: It will now enter a period of consultation during which we encourage the community to provide feedback on the proposed design. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
21
21
  })
22
22
  issue-experiment-draft:
23
23
  if: github.event.label.name == format('experiment{0} draft', ':')
@@ -31,7 +31,7 @@ jobs:
31
31
  issue_number: context.issue.number,
32
32
  owner: context.repo.owner,
33
33
  repo: context.repo.repo,
34
- body: 'This experiment has been marked as a draft! :sparkles: This means that an initial implementation has been added to the latest release of Task! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
34
+ body: 'This experiment has been marked as a draft! :sparkles: This means that an initial implementation has been added to the latest release of Task! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
35
35
  })
36
36
  issue-experiment-candidate:
37
37
  if: github.event.label.name == format('experiment{0} candidate', ':')
@@ -45,7 +45,7 @@ jobs:
45
45
  issue_number: context.issue.number,
46
46
  owner: context.repo.owner,
47
47
  repo: context.repo.repo,
48
- body: 'This experiment has been marked as a candidate! :fire: This means that the implementation is nearing completion and we are entering a period for final comments and feedback! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
48
+ body: 'This experiment has been marked as a candidate! :fire: This means that the implementation is nearing completion and we are entering a period for final comments and feedback! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
49
49
  })
50
50
  issue-experiment-stable:
51
51
  if: github.event.label.name == format('experiment{0} stable', ':')
@@ -59,7 +59,7 @@ jobs:
59
59
  issue_number: context.issue.number,
60
60
  owner: context.repo.owner,
61
61
  repo: context.repo.repo,
62
- body: 'This experiment has been marked as stable! :metal: This means that the implementation is now final and ready to be released. No more changes will be made and the experiment is safe to use in production! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
62
+ body: 'This experiment has been marked as stable! :metal: This means that the implementation is now final and ready to be released. No more changes will be made and the experiment is safe to use in production! You can find information about this experiment and how to enable it in our [experiments documentation](https://taskfile.dev/experiments). Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
63
63
  })
64
64
  issue-experiment-released:
65
65
  if: github.event.label.name == format('experiment{0} released', ':')
@@ -73,7 +73,7 @@ jobs:
73
73
  issue_number: context.issue.number,
74
74
  owner: context.repo.owner,
75
75
  repo: context.repo.repo,
76
- body: 'This experiment has been released! :rocket: This means that it is no longer an experiment and is available in the latest major version of Task. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
76
+ body: 'This experiment has been released! :rocket: This means that it is no longer an experiment and is available in the latest major version of Task. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
77
77
  })
78
78
  github.rest.issues.update({
79
79
  issue_number: context.issue.number,
@@ -93,7 +93,7 @@ jobs:
93
93
  issue_number: context.issue.number,
94
94
  owner: context.repo.owner,
95
95
  repo: context.repo.repo,
96
- body: 'This experiment has been abandoned. :disappointed: This means that this feature will not be added to Task and any experimental functionality will be removed. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
96
+ body: 'This experiment has been abandoned. :disappointed: This means that this feature will not be added to Task and any experimental functionality will be removed. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
97
97
  })
98
98
  github.rest.issues.update({
99
99
  issue_number: context.issue.number,
@@ -113,7 +113,7 @@ jobs:
113
113
  issue_number: context.issue.number,
114
114
  owner: context.repo.owner,
115
115
  repo: context.repo.repo,
116
- body: 'This experiment has been superseded. :seedling: This means that another experiment has replaced this one. Please see the [experiment workflow documentation](https://taskfile.dev/experiments/workflow) for more information on how we release experiments.'
116
+ body: 'This experiment has been superseded. :seedling: This means that another experiment has replaced this one. Please see the [experiment workflow documentation](https://taskfile.dev/experiments#workflow) for more information on how we release experiments.'
117
117
  })
118
118
  github.rest.issues.update({
119
119
  issue_number: context.issue.number,
@@ -0,0 +1,43 @@
1
+ name: Lint
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ tags:
7
+ - v*
8
+ branches:
9
+ - main
10
+
11
+ jobs:
12
+ lint:
13
+ name: Lint
14
+ strategy:
15
+ matrix:
16
+ go-version: [1.21.x, 1.22.x]
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/setup-go@v3
20
+ with:
21
+ go-version: ${{matrix.go-version}}
22
+
23
+ - uses: actions/checkout@v3
24
+
25
+ - name: golangci-lint
26
+ uses: golangci/golangci-lint-action@v3
27
+ with:
28
+ version: v1.55.2
29
+
30
+ lint-jsonschema:
31
+ runs-on: ubuntu-latest
32
+ steps:
33
+ - uses: actions/setup-python@v5
34
+ with:
35
+ python-version: 3.12
36
+
37
+ - uses: actions/checkout@v3
38
+
39
+ - name: install check-jsonschema
40
+ run: python -m pip install 'check-jsonschema==0.27.3'
41
+
42
+ - name: check-jsonschema (metaschema)
43
+ run: check-jsonschema --check-metaschema docs/static/schema.json
@@ -3,7 +3,7 @@ name: goreleaser
3
3
  on:
4
4
  push:
5
5
  tags:
6
- - '*'
6
+ - 'v*'
7
7
 
8
8
  jobs:
9
9
  goreleaser:
@@ -13,7 +13,7 @@ jobs:
13
13
  name: Test
14
14
  strategy:
15
15
  matrix:
16
- go-version: [1.20.x, 1.21.x]
16
+ go-version: [1.21.x, 1.22.x]
17
17
  platform: [ubuntu-latest, macos-latest, windows-latest]
18
18
  runs-on: ${{matrix.platform}}
19
19
  steps:
@@ -16,7 +16,7 @@ jobs:
16
16
 
17
17
  - name: Verify changed files
18
18
  id: changed-files
19
- uses: tj-actions/changed-files@v35
19
+ uses: tj-actions/changed-files@v41
20
20
  with:
21
21
  files: |
22
22
  docs/docs
@@ -1,9 +1,70 @@
1
1
  # Changelog
2
2
 
3
+ ## v3.35.1 - 2024-03-04
4
+
5
+ - Fixed a bug where the `TASKFILE_DIR` variable was sometimes incorrect (#1522,
6
+ #1523 by @pd93).
7
+ - Added a new `TASKFILE` special variable that holds the root Taskfile path
8
+ (#1523 by @pd93).
9
+ - Fixed various issues related to running a Taskfile from a subdirectory (#1529,
10
+ #1530 by @pd93).
11
+
12
+ ## v3.35.0 - 2024-02-28
13
+
14
+ - Added support for
15
+ [wildcards in task names](https://taskfile.dev/usage/#wildcard-arguments)
16
+ (#836, #1489 by @pd93).
17
+ - Added the ability to
18
+ [run Taskfiles via stdin](https://taskfile.dev/usage/#reading-a-taskfile-from-stdin)
19
+ (#655, #1483 by @pd93).
20
+ - Bumped minimum Go version to 1.21 (#1500 by @pd93).
21
+ - Fixed bug related to the `--list` flag (#1509, #1512 by @pd93, #1514, #1520 by
22
+ @pd93).
23
+ - Add mention on the documentation to the fact that the variable declaration
24
+ order is respected (#1510 by @kirkrodrigues).
25
+ - Improved style guide docs (#1495 by @iwittkau).
26
+ - Removed duplicated entry for `requires` on the API docs (#1491 by
27
+ @teatimeguest).
28
+
29
+ ## v3.34.1 - 2024-01-27
30
+
31
+ - Fixed prompt regression on
32
+ [Remote Taskfiles experiment](https://taskfile.dev/experiments/remote-taskfiles/)
33
+ (#1486, #1487 by @pd93).
34
+
35
+ ## v3.34.0 - 2024-01-25
36
+
37
+ - Removed support for `version: 2` schemas. See the
38
+ [deprecation notice on our website](https://taskfile.dev/deprecations/version-2-schema)
39
+ (#1197, #1447 by @pd93).
40
+ - Fixed a couple of issues in the JSON Schema + added a CI step to ensure it's
41
+ correct (#1471, #1474, #1476 by @sirosen).
42
+ - Added
43
+ [Any Variables experiment proposal 2](https://taskfile.dev/experiments/any-variables/?proposal=2)
44
+ (#1415, #1444 by @pd93).
45
+ - Updated the experiments and deprecations documentation format (#1445 by
46
+ @pd93).
47
+ - Added new template function: `spew`, which can be used to print variables for
48
+ debugging purposes (#1452 by @pd93).
49
+ - Added new template function: `merge`, which can be used to merge any number of
50
+ map variables (#1438, #1464 by @pd93).
51
+ - Small change on the API when using as a library: `call.Direct` became
52
+ `call.Indirect` (#1459 by @pd93).
53
+ - Refactored the public `read` and `taskfile` packages and introduced
54
+ `taskfile/ast` (#1450 by @pd93).
55
+ - `ast.IncludedTaskfiles` renamed to `ast.Includes` and `orderedmap` package
56
+ renamed to `omap` plus some internal refactor work (#1456 by @pd93).
57
+ - Fix zsh completion script to allow lowercase `taskfile` file names (#1482 by
58
+ @xontab).
59
+ - Improvements on how we check the Taskfile version (#1465 by @pd93).
60
+ - Added a new `ROOT_TASKFILE` special variable (#1468, #1469 by @pd93).
61
+ - Fix experiment flags in `.env` when the `--dir` or `--taskfile` flags were
62
+ used (#1478 by @pd93).
63
+
3
64
  ## v3.33.1 - 2023-12-21
4
65
 
5
66
  - Added support for looping over map variables with the
6
- [Any Variables experiment](https://taskfile.dev/experiments/any_variables)
67
+ [Any Variables experiment](https://taskfile.dev/experiments/any-variables)
7
68
  enabled (#1435, #1437 by @pd93).
8
69
  - Fixed a bug where dynamic variables were causing errors during fast
9
70
  compilation (#1435, #1437 by @pd93)
@@ -0,0 +1,30 @@
1
+ package args
2
+
3
+ import (
4
+ "strings"
5
+
6
+ "github.com/go-task/task/v3/taskfile/ast"
7
+ )
8
+
9
+ // Parse parses command line argument: tasks and global variables
10
+ func Parse(args ...string) ([]*ast.Call, *ast.Vars) {
11
+ calls := []*ast.Call{}
12
+ globals := &ast.Vars{}
13
+
14
+ for _, arg := range args {
15
+ if !strings.Contains(arg, "=") {
16
+ calls = append(calls, &ast.Call{Task: arg})
17
+ continue
18
+ }
19
+
20
+ name, value := splitVar(arg)
21
+ globals.Set(name, ast.Var{Value: value})
22
+ }
23
+
24
+ return calls, globals
25
+ }
26
+
27
+ func splitVar(s string) (string, string) {
28
+ pair := strings.SplitN(s, "=", 2)
29
+ return pair[0], pair[1]
30
+ }
@@ -0,0 +1,108 @@
1
+ package args_test
2
+
3
+ import (
4
+ "fmt"
5
+ "testing"
6
+
7
+ "github.com/stretchr/testify/assert"
8
+
9
+ "github.com/go-task/task/v3/args"
10
+ "github.com/go-task/task/v3/internal/omap"
11
+ "github.com/go-task/task/v3/taskfile/ast"
12
+ )
13
+
14
+ func TestArgs(t *testing.T) {
15
+ tests := []struct {
16
+ Args []string
17
+ ExpectedCalls []*ast.Call
18
+ ExpectedGlobals *ast.Vars
19
+ }{
20
+ {
21
+ Args: []string{"task-a", "task-b", "task-c"},
22
+ ExpectedCalls: []*ast.Call{
23
+ {Task: "task-a"},
24
+ {Task: "task-b"},
25
+ {Task: "task-c"},
26
+ },
27
+ },
28
+ {
29
+ Args: []string{"task-a", "FOO=bar", "task-b", "task-c", "BAR=baz", "BAZ=foo"},
30
+ ExpectedCalls: []*ast.Call{
31
+ {Task: "task-a"},
32
+ {Task: "task-b"},
33
+ {Task: "task-c"},
34
+ },
35
+ ExpectedGlobals: &ast.Vars{
36
+ OrderedMap: omap.FromMapWithOrder(
37
+ map[string]ast.Var{
38
+ "FOO": {Value: "bar"},
39
+ "BAR": {Value: "baz"},
40
+ "BAZ": {Value: "foo"},
41
+ },
42
+ []string{"FOO", "BAR", "BAZ"},
43
+ ),
44
+ },
45
+ },
46
+ {
47
+ Args: []string{"task-a", "CONTENT=with some spaces"},
48
+ ExpectedCalls: []*ast.Call{
49
+ {Task: "task-a"},
50
+ },
51
+ ExpectedGlobals: &ast.Vars{
52
+ OrderedMap: omap.FromMapWithOrder(
53
+ map[string]ast.Var{
54
+ "CONTENT": {Value: "with some spaces"},
55
+ },
56
+ []string{"CONTENT"},
57
+ ),
58
+ },
59
+ },
60
+ {
61
+ Args: []string{"FOO=bar", "task-a", "task-b"},
62
+ ExpectedCalls: []*ast.Call{
63
+ {Task: "task-a"},
64
+ {Task: "task-b"},
65
+ },
66
+ ExpectedGlobals: &ast.Vars{
67
+ OrderedMap: omap.FromMapWithOrder(
68
+ map[string]ast.Var{
69
+ "FOO": {Value: "bar"},
70
+ },
71
+ []string{"FOO"},
72
+ ),
73
+ },
74
+ },
75
+ {
76
+ Args: nil,
77
+ ExpectedCalls: []*ast.Call{},
78
+ },
79
+ {
80
+ Args: []string{},
81
+ ExpectedCalls: []*ast.Call{},
82
+ },
83
+ {
84
+ Args: []string{"FOO=bar", "BAR=baz"},
85
+ ExpectedCalls: []*ast.Call{},
86
+ ExpectedGlobals: &ast.Vars{
87
+ OrderedMap: omap.FromMapWithOrder(
88
+ map[string]ast.Var{
89
+ "FOO": {Value: "bar"},
90
+ "BAR": {Value: "baz"},
91
+ },
92
+ []string{"FOO", "BAR"},
93
+ ),
94
+ },
95
+ },
96
+ }
97
+
98
+ for i, test := range tests {
99
+ t.Run(fmt.Sprintf("TestArgs%d", i+1), func(t *testing.T) {
100
+ calls, globals := args.Parse(test.Args...)
101
+ assert.Equal(t, test.ExpectedCalls, calls)
102
+ if test.ExpectedGlobals.Len() > 0 || globals.Len() > 0 {
103
+ assert.Equal(t, test.ExpectedGlobals.Keys(), globals.Keys())
104
+ assert.Equal(t, test.ExpectedGlobals.Values(), globals.Values())
105
+ }
106
+ })
107
+ }
108
+ }
@@ -0,0 +1,221 @@
1
+ package main
2
+
3
+ import (
4
+ "context"
5
+ "fmt"
6
+ "log"
7
+ "os"
8
+ "path/filepath"
9
+ "strings"
10
+
11
+ "github.com/spf13/pflag"
12
+ "mvdan.cc/sh/v3/syntax"
13
+
14
+ "github.com/go-task/task/v3"
15
+ "github.com/go-task/task/v3/args"
16
+ "github.com/go-task/task/v3/errors"
17
+ "github.com/go-task/task/v3/internal/experiments"
18
+ "github.com/go-task/task/v3/internal/flags"
19
+ "github.com/go-task/task/v3/internal/logger"
20
+ "github.com/go-task/task/v3/internal/sort"
21
+ ver "github.com/go-task/task/v3/internal/version"
22
+ "github.com/go-task/task/v3/taskfile/ast"
23
+ )
24
+
25
+ func main() {
26
+ if err := run(); err != nil {
27
+ l := &logger.Logger{
28
+ Stdout: os.Stdout,
29
+ Stderr: os.Stderr,
30
+ Verbose: flags.Verbose,
31
+ Color: flags.Color,
32
+ }
33
+ if err, ok := err.(*errors.TaskRunError); ok && flags.ExitCode {
34
+ l.Errf(logger.Red, "%v\n", err)
35
+ os.Exit(err.TaskExitCode())
36
+ }
37
+ if err, ok := err.(errors.TaskError); ok {
38
+ l.Errf(logger.Red, "%v\n", err)
39
+ os.Exit(err.Code())
40
+ }
41
+ l.Errf(logger.Red, "%v\n", err)
42
+ os.Exit(errors.CodeUnknown)
43
+ }
44
+ os.Exit(errors.CodeOk)
45
+ }
46
+
47
+ func run() error {
48
+ log.SetFlags(0)
49
+ log.SetOutput(os.Stderr)
50
+
51
+ if err := flags.Validate(); err != nil {
52
+ return err
53
+ }
54
+
55
+ dir := flags.Dir
56
+ entrypoint := flags.Entrypoint
57
+
58
+ if flags.Version {
59
+ fmt.Printf("Task version: %s\n", ver.GetVersion())
60
+ return nil
61
+ }
62
+
63
+ if flags.Help {
64
+ pflag.Usage()
65
+ return nil
66
+ }
67
+
68
+ if flags.Experiments {
69
+ l := &logger.Logger{
70
+ Stdout: os.Stdout,
71
+ Stderr: os.Stderr,
72
+ Verbose: flags.Verbose,
73
+ Color: flags.Color,
74
+ }
75
+ return experiments.List(l)
76
+ }
77
+
78
+ if flags.Init {
79
+ wd, err := os.Getwd()
80
+ if err != nil {
81
+ log.Fatal(err)
82
+ }
83
+ if err := task.InitTaskfile(os.Stdout, wd); err != nil {
84
+ log.Fatal(err)
85
+ }
86
+ return nil
87
+ }
88
+
89
+ if flags.Global {
90
+ home, err := os.UserHomeDir()
91
+ if err != nil {
92
+ return fmt.Errorf("task: Failed to get user home directory: %w", err)
93
+ }
94
+ dir = home
95
+ }
96
+
97
+ if entrypoint != "" {
98
+ dir = filepath.Dir(entrypoint)
99
+ entrypoint = filepath.Base(entrypoint)
100
+ }
101
+
102
+ var taskSorter sort.TaskSorter
103
+ switch flags.TaskSort {
104
+ case "none":
105
+ taskSorter = &sort.Noop{}
106
+ case "alphanumeric":
107
+ taskSorter = &sort.AlphaNumeric{}
108
+ }
109
+
110
+ e := task.Executor{
111
+ Dir: dir,
112
+ Entrypoint: entrypoint,
113
+ Force: flags.Force,
114
+ ForceAll: flags.ForceAll,
115
+ Insecure: flags.Insecure,
116
+ Download: flags.Download,
117
+ Offline: flags.Offline,
118
+ Timeout: flags.Timeout,
119
+ Watch: flags.Watch,
120
+ Verbose: flags.Verbose,
121
+ Silent: flags.Silent,
122
+ AssumeYes: flags.AssumeYes,
123
+ Dry: flags.Dry || flags.Status,
124
+ Summary: flags.Summary,
125
+ Parallel: flags.Parallel,
126
+ Color: flags.Color,
127
+ Concurrency: flags.Concurrency,
128
+ Interval: flags.Interval,
129
+
130
+ Stdin: os.Stdin,
131
+ Stdout: os.Stdout,
132
+ Stderr: os.Stderr,
133
+
134
+ OutputStyle: flags.Output,
135
+ TaskSorter: taskSorter,
136
+ }
137
+
138
+ listOptions := task.NewListOptions(flags.List, flags.ListAll, flags.ListJson, flags.NoStatus)
139
+ if err := listOptions.Validate(); err != nil {
140
+ return err
141
+ }
142
+
143
+ if err := e.Setup(); err != nil {
144
+ return err
145
+ }
146
+
147
+ // If the download flag is specified, we should stop execution as soon as
148
+ // taskfile is downloaded
149
+ if flags.Download {
150
+ return nil
151
+ }
152
+
153
+ if (listOptions.ShouldListTasks()) && flags.Silent {
154
+ return e.ListTaskNames(flags.ListAll)
155
+ }
156
+
157
+ if listOptions.ShouldListTasks() {
158
+ foundTasks, err := e.ListTasks(listOptions)
159
+ if err != nil {
160
+ return err
161
+ }
162
+ if !foundTasks {
163
+ os.Exit(errors.CodeUnknown)
164
+ }
165
+ return nil
166
+ }
167
+
168
+ var (
169
+ calls []*ast.Call
170
+ globals *ast.Vars
171
+ )
172
+
173
+ tasksAndVars, cliArgs, err := getArgs()
174
+ if err != nil {
175
+ return err
176
+ }
177
+
178
+ calls, globals = args.Parse(tasksAndVars...)
179
+
180
+ // If there are no calls, run the default task instead
181
+ if len(calls) == 0 {
182
+ calls = append(calls, &ast.Call{Task: "default"})
183
+ }
184
+
185
+ globals.Set("CLI_ARGS", ast.Var{Value: cliArgs})
186
+ globals.Set("CLI_FORCE", ast.Var{Value: flags.Force || flags.ForceAll})
187
+ e.Taskfile.Vars.Merge(globals)
188
+
189
+ if !flags.Watch {
190
+ e.InterceptInterruptSignals()
191
+ }
192
+
193
+ ctx := context.Background()
194
+
195
+ if flags.Status {
196
+ return e.Status(ctx, calls...)
197
+ }
198
+
199
+ return e.Run(ctx, calls...)
200
+ }
201
+
202
+ func getArgs() ([]string, string, error) {
203
+ var (
204
+ args = pflag.Args()
205
+ doubleDashPos = pflag.CommandLine.ArgsLenAtDash()
206
+ )
207
+
208
+ if doubleDashPos == -1 {
209
+ return args, "", nil
210
+ }
211
+
212
+ var quotedCliArgs []string
213
+ for _, arg := range args[doubleDashPos:] {
214
+ quotedCliArg, err := syntax.Quote(arg, syntax.LangBash)
215
+ if err != nil {
216
+ return nil, "", err
217
+ }
218
+ quotedCliArgs = append(quotedCliArgs, quotedCliArg)
219
+ }
220
+ return args[:doubleDashPos], strings.Join(quotedCliArgs, " "), nil
221
+ }
@@ -18,7 +18,7 @@ function __task_list() {
18
18
  enabled=1
19
19
  cmd+=(--taskfile "$taskfile")
20
20
  else
21
- for taskfile in Taskfile{,.dist}.{yaml,yml}; do
21
+ for taskfile in {T,t}askfile{,.dist}.{yaml,yml}; do
22
22
  if [[ -f "$taskfile" ]]; then
23
23
  enabled=1
24
24
  break
@@ -11,7 +11,7 @@ toc_max_heading_level: 5
11
11
 
12
12
  Task command line tool has the following syntax:
13
13
 
14
- ```bash
14
+ ```shell
15
15
  task [--flags] [tasks...] [-- CLI_ARGS...]
16
16
  ```
17
17
 
@@ -128,8 +128,10 @@ There are some special variables that is available on the templating system:
128
128
  | `CLI_ARGS` | Contain all extra arguments passed after `--` when calling Task through the CLI. |
129
129
  | `CLI_FORCE` | A boolean containing whether the `--force` or `--force-all` flags were set. |
130
130
  | `TASK` | The name of the current task. |
131
- | `ROOT_DIR` | The absolute path of the root Taskfile. |
132
- | `TASKFILE_DIR` | The absolute path of the included Taskfile. |
131
+ | `ROOT_TASKFILE` | The absolute path of the root Taskfile. |
132
+ | `ROOT_DIR` | The absolute path of the root Taskfile directory. |
133
+ | `TASKFILE` | The absolute path of the included Taskfile. |
134
+ | `TASKFILE_DIR` | The absolute path of the included Taskfile directory. |
133
135
  | `USER_WORKING_DIR` | The absolute path of the directory `task` was called from. |
134
136
  | `CHECKSUM` | The checksum of the files listed in `sources`. Only available within the `status` prop and if method is set to `checksum`. |
135
137
  | `TIMESTAMP` | The date object of the greatest timestamp of the files listed in `sources`. Only available within the `status` prop and if method is set to `timestamp`. |
@@ -213,6 +215,19 @@ vars:
213
215
 
214
216
  :::
215
217
 
218
+ :::info
219
+
220
+ In a variables map, variables defined later may reference variables defined
221
+ earlier (declaration order is respected):
222
+
223
+ ```yaml
224
+ vars:
225
+ FIRST_VAR: "hello"
226
+ SECOND_VAR: "{{.FIRST_VAR}} world"
227
+ ```
228
+
229
+ :::
230
+
216
231
  ### Task
217
232
 
218
233
  | Attribute | Type | Default | Description |
@@ -227,7 +242,6 @@ vars:
227
242
  | `sources` | `[]string` | | A list of sources to check before running this task. Relevant for `checksum` and `timestamp` methods. Can be file paths or star globs. |
228
243
  | `generates` | `[]string` | | A list of files meant to be generated by this task. Relevant for `timestamp` method. Can be file paths or star globs. |
229
244
  | `status` | `[]string` | | A list of commands to check if this task should run. The task is skipped otherwise. This overrides `method`, `sources` and `generates`. |
230
- | `requires` | `[]string` | | A list of variables which should be set if this task is to run, if any of these variables are unset the task will error and not run. |
231
245
  | `preconditions` | [`[]Precondition`](#precondition) | | A list of commands to check if this task should run. If a condition is not met, the task will error. |
232
246
  | `requires` | [`Requires`](#requires) | | A list of required variables which should be set if this task is to run, if any variables listed are unset the task will error and not run. |
233
247
  | `dir` | `string` | | The directory in which this task should run. Defaults to the current working directory. |