go-task-bin 3.37.2__tar.gz → 3.38.0__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.
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/PKG-INFO +2 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/pdm_build.py +1 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/pyproject.toml +2 -2
- go_task_bin-3.38.0/task/.gitattributes +2 -0
- go_task_bin-3.38.0/task/.github/pull_request_template.md +9 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/lint.yml +4 -4
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/release.yml +2 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/test.yml +2 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/upload-source-documents.yml +2 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.goreleaser.yml +5 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/CHANGELOG.md +39 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/Taskfile.yml +46 -3
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/cmd/release/main.go +17 -3
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/cmd/task/task.go +14 -4
- go_task_bin-3.38.0/task/errors/error_taskfile_decode.go +179 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/errors/errors.go +7 -2
- go_task_bin-3.38.0/task/errors/themes/task.xml +17 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/go.mod +7 -4
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/go.sum +20 -8
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/hash.go +2 -5
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/help.go +4 -3
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/compiler/compiler.go +2 -15
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/experiments/experiments.go +1 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/flags/flags.go +6 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/hash/hash.go +1 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/logger/logger.go +25 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/output/output.go +3 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/output/output_test.go +37 -1
- go_task_bin-3.38.0/task/internal/output/prefixed.go +110 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/slicesext/slicesext.go +10 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/templater/templater.go +10 -3
- go_task_bin-3.38.0/task/internal/version/version.go +29 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/package-lock.json +1 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/package.json +1 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/setup.go +28 -6
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/status.go +2 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/task.go +17 -12
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/task_test.go +98 -18
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/cmd.go +4 -5
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/dep.go +5 -5
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/for.go +13 -12
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/glob.go +7 -5
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/include.go +6 -7
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/output.go +6 -6
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/platforms.go +5 -4
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/platforms_test.go +4 -4
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/precondition.go +5 -7
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/task.go +45 -34
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/taskfile.go +4 -3
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/tasks.go +6 -4
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/var.go +29 -26
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/cache.go +16 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/node.go +1 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/node_file.go +4 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/node_http.go +5 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/node_stdin.go +4 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/reader.go +5 -0
- go_task_bin-3.38.0/task/testdata/desc/Taskfile.yml +13 -0
- go_task_bin-3.38.0/task/testdata/run_once_shared_deps/Taskfile.yml +11 -0
- go_task_bin-3.38.0/task/testdata/run_once_shared_deps/library/Taskfile.yml +9 -0
- go_task_bin-3.38.0/task/testdata/run_once_shared_deps/service-a/Taskfile.yml +15 -0
- go_task_bin-3.38.0/task/testdata/run_once_shared_deps/service-a/src/imasource.go +1 -0
- go_task_bin-3.38.0/task/testdata/run_once_shared_deps/service-b/Taskfile.yml +15 -0
- go_task_bin-3.38.0/task/testdata/run_once_shared_deps/service-b/src/imasource.go +1 -0
- go_task_bin-3.38.0/task/testdata/var_references/Taskfile.yml +74 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/any2/Taskfile.yml +1 -14
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/variables.go +3 -2
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/blog/2024-05-09-any-variables.mdx +1 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/constants.ts +2 -0
- {go_task_bin-3.37.2/task/website/versioned_docs/version-latest → go_task_bin-3.38.0/task/website/docs}/changelog.mdx +39 -1
- go_task_bin-3.38.0/task/website/docs/deprecations/template_functions.mdx +23 -0
- go_task_bin-3.38.0/task/website/docs/experiments/map_variables.mdx +245 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/experiments/remote_taskfiles.mdx +8 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/faq.mdx +19 -0
- {go_task_bin-3.37.2/task/website/versioned_docs/version-latest → go_task_bin-3.38.0/task/website/docs}/installation.mdx +17 -0
- go_task_bin-3.38.0/task/website/docs/reference/_category_.yml +2 -0
- go_task_bin-3.38.0/task/website/docs/reference/cli.mdx +118 -0
- go_task_bin-3.38.0/task/website/docs/reference/environment.mdx +48 -0
- go_task_bin-3.37.2/task/website/versioned_docs/version-latest/api_reference.mdx → go_task_bin-3.38.0/task/website/docs/reference/schema.mdx +11 -175
- go_task_bin-3.38.0/task/website/docs/reference/templating.mdx +406 -0
- go_task_bin-3.38.0/task/website/docs/taskfile_versions.mdx +72 -0
- {go_task_bin-3.37.2/task/website/versioned_docs/version-latest → go_task_bin-3.38.0/task/website/docs}/usage.mdx +142 -79
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docusaurus.config.ts +14 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/js/carbon.js +8 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/schema.json +8 -12
- {go_task_bin-3.37.2/task/website/docs → go_task_bin-3.38.0/task/website/versioned_docs/version-latest}/changelog.mdx +39 -1
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/deprecations/template_functions.mdx +23 -0
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/experiments/map_variables.mdx +245 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/experiments/remote_taskfiles.mdx +8 -1
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/faq.mdx +19 -0
- {go_task_bin-3.37.2/task/website/docs → go_task_bin-3.38.0/task/website/versioned_docs/version-latest}/installation.mdx +17 -0
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/reference/_category_.yml +2 -0
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/reference/cli.mdx +118 -0
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/reference/environment.mdx +48 -0
- go_task_bin-3.37.2/task/website/docs/api_reference.mdx → go_task_bin-3.38.0/task/website/versioned_docs/version-latest/reference/schema.mdx +11 -175
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/reference/templating.mdx +406 -0
- go_task_bin-3.38.0/task/website/versioned_docs/version-latest/taskfile_versions.mdx +72 -0
- {go_task_bin-3.37.2/task/website/docs → go_task_bin-3.38.0/task/website/versioned_docs/version-latest}/usage.mdx +142 -79
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/yarn.lock +23 -15
- go_task_bin-3.37.2/task/.gitattributes +0 -1
- go_task_bin-3.37.2/task/.github/pull_request_template.md +0 -5
- go_task_bin-3.37.2/task/internal/output/prefixed.go +0 -68
- go_task_bin-3.37.2/task/internal/version/version.go +0 -25
- go_task_bin-3.37.2/task/website/docs/experiments/map_variables.mdx +0 -335
- go_task_bin-3.37.2/task/website/docs/taskfile_versions.mdx +0 -263
- go_task_bin-3.37.2/task/website/versioned_docs/version-latest/experiments/map_variables.mdx +0 -335
- go_task_bin-3.37.2/task/website/versioned_docs/version-latest/taskfile_versions.mdx +0 -263
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/LICENSE +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/README.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/go_task_bin/__init__.py +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.editorconfig +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.git +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/CODE_OF_CONDUCT.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/CONTRIBUTING.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/FUNDING.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/dependabot.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/issue-awaiting-response.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/issue-closed.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/issue-experiment.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/issue-needs-triage.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.golangci.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.mockery.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.nvmrc +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.prettierrc.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.vscode/settings-sample.json +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/LICENSE +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/README.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/args/args.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/args/args_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/bin/.keep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/cmd/sleepit/sleepit.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/completion/bash/task.bash +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/completion/fish/task.fish +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/completion/ps/task.ps1 +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/completion/zsh/_task +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/concurrency.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/errors/errors_task.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/errors/errors_taskfile.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/init.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/install-task.sh +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/compiler/env.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/deepcopy/deepcopy.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/editors/output.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/env/env.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/execext/devnull.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/execext/exec.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/exp/maps.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/filepathext/filepathext.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/checker.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/glob.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/sources.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/sources_checksum.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/sources_checksum_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/sources_none.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/sources_timestamp.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/status.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/task.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/fingerprint/task_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/goext/meta.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/mocks/sources_checkable.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/mocks/status_checkable.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/omap/orderedmap.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/omap/orderedmap_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/output/group.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/output/interleaved.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/sort/sorter.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/sort/sorter_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/summary/summary.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/summary/summary_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/sysinfo/uid.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/sysinfo/uid_win.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/templater/funcs.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/internal/term/term.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/precondition.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/requires.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/signals.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/signals_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/call.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/graph.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/location.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/precondition_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/requires.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/ast/taskfile_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/dotenv.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/node_base.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/taskfile/taskfile.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/alias/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/alias/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/alias/alias-summary.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/alias/alias.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/checksum/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/checksum/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/checksum/ignore_me.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/checksum/source.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/concurrency/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/cyclic/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/deferred/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/deps/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/deps/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/dynamic_var/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/dynamic_var/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/dynamic_var/subdirectory/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/dynamic_var_on_created_dir/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/explicit_doesnt_exist/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/explicit_exists/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dir/explicit_exists/exists/.keep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/default/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/env_var_in_path/.env.testing +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/env_var_in_path/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/error_included_envs/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/include1/.env +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/include1/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/include1/envs/.env +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/local_env_in_path/.env.testing +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/local_env_in_path/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/local_var_in_path/.env.testing +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/local_var_in_path/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv/missing_env/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv_task/default/.env +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv_task/default/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dotenv_task/default/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dry/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dry_checksum/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/dry_checksum/source.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/empty_task/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/empty_taskfile/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/env/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/env/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/error_code/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/evaluate_symlinks_in_paths/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/evaluate_symlinks_in_paths/shared/b +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/evaluate_symlinks_in_paths/shared/inner_shared/c +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/evaluate_symlinks_in_paths/src/a +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/exit_immediately/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/expand/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/file_names/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/file_names/Taskfile.dist.yaml/Taskfile.dist.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/file_names/Taskfile.dist.yml/Taskfile.dist.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/file_names/Taskfile.yaml/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/file_names/Taskfile.yml/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/for/cmds/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/for/cmds/bar.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/for/cmds/foo.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/for/deps/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/for/deps/bar.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/for/deps/foo.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/force/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/generates/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/generates/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/generates/sub/.keep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_errors/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_nil_elements/cmds/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_nil_elements/deps/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_nil_elements/includes/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_nil_elements/includes/inc.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_nil_elements/preconditions/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/ignore_signals/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars/include/Taskfile.include1.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars/include/Taskfile.include2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars/include/Taskfile.include3.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars_multi_level/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars_multi_level/bar/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars_multi_level/foo/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/include_with_vars_multi_level/lib/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/included_taskfile_var_merging/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/included_taskfile_var_merging/bar/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/included_taskfile_var_merging/foo/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/Taskfile_darwin.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/Taskfile_linux.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/Taskfile_windows.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/included/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/module1/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes/module2/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_call_root_task/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_call_root_task/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_call_root_task/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_cycle/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_cycle/one/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_cycle/one/two/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_deps/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_deps/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_deps/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_empty/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_empty/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_empty/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_incorrect/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_incorrect/incomplete.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_internal/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_internal/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_interpolation/include/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_interpolation/include_with_dir/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_interpolation/include_with_env_variable/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_interpolation/included/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/called_one.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/called_three.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/called_two.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/one/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/one/two/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_multi_level/one/two/three/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_optional/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_optional/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_optional_explicit_false/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_optional_implicit_false/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_rel_path/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_rel_path/common/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_rel_path/included/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_shadowed_default/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_shadowed_default/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_shadowed_default/file.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_unshadowed_default/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_unshadowed_default/Taskfile2.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_unshadowed_default/file.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_yaml/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_yaml/Custom.ext +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_yaml/included/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/includes_yaml/included/custom.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/init/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/internal_task/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/label_list/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/label_status/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/label_summary/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/label_uptodate/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/label_var/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/list_desc_interpolation/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/list_mixed_desc/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/output_group/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/output_group_error_only/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/params/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/params/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/platforms/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/precondition/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/precondition/foo.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/prompt/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/run/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/run/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/shopts/command_level/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/shopts/global_level/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/shopts/task_level/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/short_task_notation/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/silent/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/single_cmd_dep/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/single_cmd_dep/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/special_vars/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/special_vars/included/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/special_vars/subdir/.gitkeep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/split_args/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/status/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/status/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/status_vars/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/status_vars/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/status_vars/source.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/summary/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/summary/task-with-summary.txt +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/taskfile_walk/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/taskfile_walk/foo/bar/.gitkeep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/user_working_dir/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/user_working_dir_with_includes/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/user_working_dir_with_includes/included/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/user_working_dir_with_includes/somedir/.keep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/.env +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/any/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/any2/example.json +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/vars/any2/example.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/version/v1/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/version/v2/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/version/v3/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/watcher_interval/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/watcher_interval/Taskfile.yaml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/testdata/wildcards/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/watch.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/watch_test.go +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/.gitignore +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/.nojekyll +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/babel.config.ts +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/blog/2023-09-02-introducing-experiments.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/blog/authors.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/crowdin.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/community.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/contributing.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/deprecations/deprecations.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/deprecations/template.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/deprecations/version_2_schema.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/experiments/experiments.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/experiments/gentle_force.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/experiments/template.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/integrations.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/intro.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/releasing.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/styleguide.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/docs/translate.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/package.json +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/prettier.config.js +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/sidebars.ts +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/api/crowdin.js +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/components/.keep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/css/carbon.css +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/css/custom.css +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/pages/.keep +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/pages/donate.md +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/themes/prismDark.js +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/src/themes/prismLight.js +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/.nojekyll +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/CNAME +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/Taskfile.yml +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/appwrite.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/favicon.ico +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/icon-discord.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/icon-github.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/icon-mastodon.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/icon-twitter.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/logo.png +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/logo.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/logo_mono.svg +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/og-image.png +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/img/pix.png +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/static/install.sh +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/tsconfig.json +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/community.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/contributing.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/deprecations/deprecations.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/deprecations/template.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/deprecations/version_2_schema.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/experiments/experiments.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/experiments/gentle_force.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/experiments/template.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/integrations.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/intro.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/releasing.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/styleguide.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_docs/version-latest/translate.mdx +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versioned_sidebars/version-latest-sidebars.json +0 -0
- {go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/website/versions.json +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: go-task-bin
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.38.0
|
|
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>
|
|
7
7
|
License: MIT
|
|
8
|
-
Classifier: Programming Language ::
|
|
8
|
+
Classifier: Programming Language :: Go
|
|
9
9
|
Classifier: Topic :: Software Development :: Build Tools
|
|
10
10
|
Project-URL: Repository, https://github.com/Bing-su/pip-binary-factory
|
|
11
11
|
Project-URL: Taskfile, https://taskfile.dev
|
|
@@ -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.
|
|
4
|
+
version = "3.38.0"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "dowon", email = "ks2515@naver.com" },
|
|
7
7
|
]
|
|
@@ -22,7 +22,7 @@ keywords = [
|
|
|
22
22
|
"tool",
|
|
23
23
|
]
|
|
24
24
|
classifiers = [
|
|
25
|
-
"Programming Language ::
|
|
25
|
+
"Programming Language :: Go",
|
|
26
26
|
"Topic :: Software Development :: Build Tools",
|
|
27
27
|
]
|
|
28
28
|
|
|
@@ -16,14 +16,14 @@ jobs:
|
|
|
16
16
|
go-version: [1.21.x, 1.22.x]
|
|
17
17
|
runs-on: ubuntu-latest
|
|
18
18
|
steps:
|
|
19
|
-
- uses: actions/setup-go@
|
|
19
|
+
- uses: actions/setup-go@v5
|
|
20
20
|
with:
|
|
21
21
|
go-version: ${{matrix.go-version}}
|
|
22
22
|
|
|
23
|
-
- uses: actions/checkout@
|
|
23
|
+
- uses: actions/checkout@v4
|
|
24
24
|
|
|
25
25
|
- name: golangci-lint
|
|
26
|
-
uses: golangci/golangci-lint-action@
|
|
26
|
+
uses: golangci/golangci-lint-action@v6
|
|
27
27
|
with:
|
|
28
28
|
version: v1.55.2
|
|
29
29
|
|
|
@@ -34,7 +34,7 @@ jobs:
|
|
|
34
34
|
with:
|
|
35
35
|
python-version: 3.12
|
|
36
36
|
|
|
37
|
-
- uses: actions/checkout@
|
|
37
|
+
- uses: actions/checkout@v4
|
|
38
38
|
|
|
39
39
|
- name: install check-jsonschema
|
|
40
40
|
run: python -m pip install 'check-jsonschema==0.27.3'
|
|
@@ -18,13 +18,13 @@ jobs:
|
|
|
18
18
|
runs-on: ${{matrix.platform}}
|
|
19
19
|
steps:
|
|
20
20
|
- name: Set up Go ${{matrix.go-version}}
|
|
21
|
-
uses: actions/setup-go@
|
|
21
|
+
uses: actions/setup-go@v5
|
|
22
22
|
with:
|
|
23
23
|
go-version: ${{matrix.go-version}}
|
|
24
24
|
id: go
|
|
25
25
|
|
|
26
26
|
- name: Check out code into the Go module directory
|
|
27
|
-
uses: actions/checkout@
|
|
27
|
+
uses: actions/checkout@v4
|
|
28
28
|
|
|
29
29
|
- name: Download Go modules
|
|
30
30
|
run: go mod download
|
{go_task_bin-3.37.2 → go_task_bin-3.38.0}/task/.github/workflows/upload-source-documents.yml
RENAMED
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
if: github.repository == 'go-task/task'
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
16
|
|
|
17
17
|
- name: Verify changed files
|
|
18
18
|
id: changed-files
|
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
website/src/pages
|
|
26
26
|
|
|
27
27
|
- name: Install Task
|
|
28
|
-
uses: arduino/setup-task@
|
|
28
|
+
uses: arduino/setup-task@v2
|
|
29
29
|
with:
|
|
30
30
|
version: 3.x
|
|
31
31
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -11,11 +11,16 @@ builds:
|
|
|
11
11
|
- amd64
|
|
12
12
|
- arm
|
|
13
13
|
- arm64
|
|
14
|
+
- riscv64
|
|
14
15
|
goarm:
|
|
15
16
|
- '6'
|
|
16
17
|
ignore:
|
|
17
18
|
- goos: darwin
|
|
18
19
|
goarch: '386'
|
|
20
|
+
- goos: darwin
|
|
21
|
+
goarch: riscv64
|
|
22
|
+
- goos: windows
|
|
23
|
+
goarch: riscv64
|
|
19
24
|
env:
|
|
20
25
|
- CGO_ENABLED=0
|
|
21
26
|
mod_timestamp: '{{ .CommitTimestamp }}'
|
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v3.38.0 - 2024-06-30
|
|
4
|
+
|
|
5
|
+
- Added `TASK_EXE` special variable (#1616, #1624 by @pd93 and @andreynering).
|
|
6
|
+
- Some YAML parsing errors will now show in a more user friendly way (#1619 by
|
|
7
|
+
@pd93).
|
|
8
|
+
- Prefixed outputs will now be colorized by default (#1572 by
|
|
9
|
+
@AlexanderArvidsson)
|
|
10
|
+
- [References](https://taskfile.dev/usage/#referencing-other-variables) are now
|
|
11
|
+
generally available (no experiments required) (#1654 by @pd93).
|
|
12
|
+
- Templating functions can now be used in references (#1645, #1654 by @pd93).
|
|
13
|
+
- Added a new
|
|
14
|
+
[templating reference page](https://taskfile.dev/reference/templating/) to the
|
|
15
|
+
documentation (#1614, #1653 by @pd93).
|
|
16
|
+
- If using the
|
|
17
|
+
[Map Variables experiment (1)](https://taskfile.dev/experiments/map-variables/?proposal=1),
|
|
18
|
+
references are available by
|
|
19
|
+
[prefixing a string with a `#`](https://taskfile.dev/experiments/map-variables/?proposal=1#references)
|
|
20
|
+
(#1654 by @pd93).
|
|
21
|
+
- If using the
|
|
22
|
+
[Map Variables experiment (2)](https://taskfile.dev/experiments/map-variables/?proposal=2),
|
|
23
|
+
the `yaml` and `json` keys are no longer available (#1654 by @pd93).
|
|
24
|
+
- Added a new `TASK_REMOTE_DIR` environment variable to configure where cached
|
|
25
|
+
remote Taskfiles are stored (#1661 by @vmaerten).
|
|
26
|
+
- Added a new `--clear-cache` flag to clear the cache of remote Taskfiles (#1639
|
|
27
|
+
by @vmaerten).
|
|
28
|
+
- Improved the readability of cached remote Taskfile filenames (#1636 by
|
|
29
|
+
@vmaerten).
|
|
30
|
+
- Starting releasing a binary for the `riscv64` architecture on Linux (#1699 by
|
|
31
|
+
@mengzhuo).
|
|
32
|
+
- Added `CLI_SILENT` and `CLI_VERBOSE` variables (#1480, #1669 by @Vince-Smith).
|
|
33
|
+
- Fixed a couple of bugs with the `prompt:` feature (#1657 by @pd93).
|
|
34
|
+
- Fixed JSON Schema to disallow invalid properties (#1657 by @pd93).
|
|
35
|
+
- Fixed version checks not working as intended (#872, #1663 by @vmaerten).
|
|
36
|
+
- Fixed a bug where included tasks were run multiple times even if `run: once`
|
|
37
|
+
was set (#852, #1655 by @pd93).
|
|
38
|
+
- Fixed some bugs related to column formatting in the terminal (#1350, #1637,
|
|
39
|
+
#1656 by @vmaerten).
|
|
40
|
+
|
|
3
41
|
## v3.37.2 - 2024-05-12
|
|
4
42
|
|
|
5
43
|
- Fixed a bug where an empty Taskfile would cause a panic (#1648 by @pd93).
|
|
@@ -20,7 +58,7 @@
|
|
|
20
58
|
- Refactored how Task reads, parses and merges Taskfiles using a DAG (#1563,
|
|
21
59
|
#1607 by @pd93).
|
|
22
60
|
- Fix a bug which stopped tasks from using `stdin` as input (#1593, #1623 by
|
|
23
|
-
@
|
|
61
|
+
@pd93).
|
|
24
62
|
- Fix error when a file or directory in the project contained a special char
|
|
25
63
|
like `&`, `(` or `)` (#1551, #1584 by @andreynering).
|
|
26
64
|
- Added alias `q` for template function `shellQuote` (#1601, #1603 by @vergenzt)
|
|
@@ -123,10 +123,53 @@ tasks:
|
|
|
123
123
|
cmds:
|
|
124
124
|
- go install github.com/goreleaser/goreleaser@latest
|
|
125
125
|
|
|
126
|
-
release
|
|
126
|
+
release:*:
|
|
127
127
|
desc: Prepare the project for a new release
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
summary: |
|
|
129
|
+
This task will do the following:
|
|
130
|
+
|
|
131
|
+
- Update the version and date in the CHANGELOG.md file
|
|
132
|
+
- Update the version in the package.json and package-lock.json files
|
|
133
|
+
- Copy the latest docs to the "current" version on the website
|
|
134
|
+
- Commit the changes
|
|
135
|
+
- Create a new tag
|
|
136
|
+
- Push the commit/tag to the repository
|
|
137
|
+
- Create a GitHub release
|
|
138
|
+
|
|
139
|
+
To use the task, simply run "task release:<version>" where "<version>" is is one of:
|
|
140
|
+
|
|
141
|
+
- "major" - Bumps the major number
|
|
142
|
+
- "minor" - Bumps the minor number
|
|
143
|
+
- "patch" - Bumps the patch number
|
|
144
|
+
- A semver compatible version number (e.g. "1.2.3")
|
|
145
|
+
vars:
|
|
146
|
+
VERSION:
|
|
147
|
+
sh: "go run ./cmd/release --version {{index .MATCH 0}}"
|
|
148
|
+
COMPLETE_MESSAGE: |
|
|
149
|
+
Creating release with GoReleaser: https://github.com/go-task/task/actions/workflows/release.yml
|
|
150
|
+
|
|
151
|
+
Please wait for the CI to finish and then do the following:
|
|
152
|
+
|
|
153
|
+
- Copy the changelog for v{{.VERSION}} to the GitHub release
|
|
154
|
+
- Publish the package to NPM with `task npm:publish`
|
|
155
|
+
- Update and push the snapcraft manifest in https://github.com/go-task/snap/blob/main/snap/snapcraft.yaml
|
|
156
|
+
preconditions:
|
|
157
|
+
- sh: test $(git rev-parse --abbrev-ref HEAD) = "main"
|
|
158
|
+
msg: "You must be on the main branch to release"
|
|
159
|
+
- sh: "[[ -z $(git diff --shortstat main) ]]"
|
|
160
|
+
msg: "You must have a clean working tree to release"
|
|
161
|
+
prompt: "Are you sure you want to release version {{.VERSION}}?"
|
|
162
|
+
cmds:
|
|
163
|
+
- cmd: echo "Releasing v{{.VERSION}}"
|
|
164
|
+
silent: true
|
|
165
|
+
- "go run ./cmd/release {{.VERSION}}"
|
|
166
|
+
- "git add --all"
|
|
167
|
+
- "git commit -m v{{.VERSION}}"
|
|
168
|
+
- "git push"
|
|
169
|
+
- "git tag v{{.VERSION}}"
|
|
170
|
+
- "git push origin tag v{{.VERSION}}"
|
|
171
|
+
- cmd: printf "%s" '{{.COMPLETE_MESSAGE}}'
|
|
172
|
+
silent: true
|
|
130
173
|
|
|
131
174
|
npm:publish:
|
|
132
175
|
desc: Publish release to npm
|
|
@@ -11,6 +11,7 @@ import (
|
|
|
11
11
|
|
|
12
12
|
"github.com/Masterminds/semver/v3"
|
|
13
13
|
"github.com/otiai10/copy"
|
|
14
|
+
"github.com/spf13/pflag"
|
|
14
15
|
)
|
|
15
16
|
|
|
16
17
|
const (
|
|
@@ -25,6 +26,16 @@ var (
|
|
|
25
26
|
versionRegex = regexp.MustCompile(`(?m)^ "version": "\d+\.\d+\.\d+",$`)
|
|
26
27
|
)
|
|
27
28
|
|
|
29
|
+
// Flags
|
|
30
|
+
var (
|
|
31
|
+
versionFlag bool
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
func init() {
|
|
35
|
+
pflag.BoolVarP(&versionFlag, "version", "v", false, "resolved version number")
|
|
36
|
+
pflag.Parse()
|
|
37
|
+
}
|
|
38
|
+
|
|
28
39
|
func main() {
|
|
29
40
|
if err := release(); err != nil {
|
|
30
41
|
fmt.Println(err)
|
|
@@ -33,7 +44,7 @@ func main() {
|
|
|
33
44
|
}
|
|
34
45
|
|
|
35
46
|
func release() error {
|
|
36
|
-
if len(
|
|
47
|
+
if len(pflag.Args()) != 1 {
|
|
37
48
|
return errors.New("error: expected version number")
|
|
38
49
|
}
|
|
39
50
|
|
|
@@ -42,11 +53,14 @@ func release() error {
|
|
|
42
53
|
return err
|
|
43
54
|
}
|
|
44
55
|
|
|
45
|
-
if err := bumpVersion(version,
|
|
56
|
+
if err := bumpVersion(version, pflag.Arg(0)); err != nil {
|
|
46
57
|
return err
|
|
47
58
|
}
|
|
48
59
|
|
|
49
|
-
|
|
60
|
+
if versionFlag {
|
|
61
|
+
fmt.Println(version)
|
|
62
|
+
return nil
|
|
63
|
+
}
|
|
50
64
|
|
|
51
65
|
if err := changelog(version); err != nil {
|
|
52
66
|
return err
|
|
@@ -17,6 +17,7 @@ import (
|
|
|
17
17
|
"github.com/go-task/task/v3/internal/logger"
|
|
18
18
|
"github.com/go-task/task/v3/internal/sort"
|
|
19
19
|
ver "github.com/go-task/task/v3/internal/version"
|
|
20
|
+
"github.com/go-task/task/v3/taskfile"
|
|
20
21
|
"github.com/go-task/task/v3/taskfile/ast"
|
|
21
22
|
)
|
|
22
23
|
|
|
@@ -58,7 +59,7 @@ func run() error {
|
|
|
58
59
|
entrypoint := flags.Entrypoint
|
|
59
60
|
|
|
60
61
|
if flags.Version {
|
|
61
|
-
fmt.Printf("Task version: %s\n", ver.
|
|
62
|
+
fmt.Printf("Task version: %s\n", ver.GetVersionWithSum())
|
|
62
63
|
return nil
|
|
63
64
|
}
|
|
64
65
|
|
|
@@ -125,16 +126,15 @@ func run() error {
|
|
|
125
126
|
OutputStyle: flags.Output,
|
|
126
127
|
TaskSorter: taskSorter,
|
|
127
128
|
}
|
|
128
|
-
|
|
129
129
|
listOptions := task.NewListOptions(flags.List, flags.ListAll, flags.ListJson, flags.NoStatus)
|
|
130
130
|
if err := listOptions.Validate(); err != nil {
|
|
131
131
|
return err
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
|
|
134
|
+
err := e.Setup()
|
|
135
|
+
if err != nil {
|
|
135
136
|
return err
|
|
136
137
|
}
|
|
137
|
-
|
|
138
138
|
if experiments.AnyVariables.Enabled {
|
|
139
139
|
logger.Warnf("The 'Any Variables' experiment flag is no longer required to use non-map variable types. If you wish to use map variables, please use 'TASK_X_MAP_VARIABLES' instead. See https://github.com/go-task/task/issues/1585\n")
|
|
140
140
|
}
|
|
@@ -145,6 +145,14 @@ func run() error {
|
|
|
145
145
|
return nil
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
if flags.ClearCache {
|
|
149
|
+
cache, err := taskfile.NewCache(e.TempDir.Remote)
|
|
150
|
+
if err != nil {
|
|
151
|
+
return err
|
|
152
|
+
}
|
|
153
|
+
return cache.Clear()
|
|
154
|
+
}
|
|
155
|
+
|
|
148
156
|
if (listOptions.ShouldListTasks()) && flags.Silent {
|
|
149
157
|
return e.ListTaskNames(flags.ListAll)
|
|
150
158
|
}
|
|
@@ -179,6 +187,8 @@ func run() error {
|
|
|
179
187
|
|
|
180
188
|
globals.Set("CLI_ARGS", ast.Var{Value: cliArgs})
|
|
181
189
|
globals.Set("CLI_FORCE", ast.Var{Value: flags.Force || flags.ForceAll})
|
|
190
|
+
globals.Set("CLI_SILENT", ast.Var{Value: flags.Silent})
|
|
191
|
+
globals.Set("CLI_VERBOSE", ast.Var{Value: flags.Verbose})
|
|
182
192
|
e.Taskfile.Vars.Merge(globals, nil)
|
|
183
193
|
|
|
184
194
|
if !flags.Watch {
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
package errors
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"bytes"
|
|
5
|
+
"embed"
|
|
6
|
+
"errors"
|
|
7
|
+
"fmt"
|
|
8
|
+
"regexp"
|
|
9
|
+
"strings"
|
|
10
|
+
|
|
11
|
+
"github.com/alecthomas/chroma/v2"
|
|
12
|
+
"github.com/alecthomas/chroma/v2/quick"
|
|
13
|
+
"github.com/alecthomas/chroma/v2/styles"
|
|
14
|
+
"github.com/fatih/color"
|
|
15
|
+
"gopkg.in/yaml.v3"
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
//go:embed themes/*.xml
|
|
19
|
+
var embedded embed.FS
|
|
20
|
+
|
|
21
|
+
var typeErrorRegex = regexp.MustCompile(`line \d+: (.*)`)
|
|
22
|
+
|
|
23
|
+
func init() {
|
|
24
|
+
r, err := embedded.Open("themes/task.xml")
|
|
25
|
+
if err != nil {
|
|
26
|
+
panic(err)
|
|
27
|
+
}
|
|
28
|
+
style, err := chroma.NewXMLStyle(r)
|
|
29
|
+
if err != nil {
|
|
30
|
+
panic(err)
|
|
31
|
+
}
|
|
32
|
+
styles.Register(style)
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
type (
|
|
36
|
+
TaskfileDecodeError struct {
|
|
37
|
+
Message string
|
|
38
|
+
Location string
|
|
39
|
+
Line int
|
|
40
|
+
Column int
|
|
41
|
+
Tag string
|
|
42
|
+
Snippet TaskfileSnippet
|
|
43
|
+
Err error
|
|
44
|
+
}
|
|
45
|
+
TaskfileSnippet struct {
|
|
46
|
+
Lines []string
|
|
47
|
+
StartLine int
|
|
48
|
+
EndLine int
|
|
49
|
+
Padding int
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
func NewTaskfileDecodeError(err error, node *yaml.Node) *TaskfileDecodeError {
|
|
54
|
+
// If the error is already a DecodeError, return it
|
|
55
|
+
taskfileInvalidErr := &TaskfileDecodeError{}
|
|
56
|
+
if errors.As(err, &taskfileInvalidErr) {
|
|
57
|
+
return taskfileInvalidErr
|
|
58
|
+
}
|
|
59
|
+
return &TaskfileDecodeError{
|
|
60
|
+
Line: node.Line,
|
|
61
|
+
Column: node.Column,
|
|
62
|
+
Tag: node.ShortTag(),
|
|
63
|
+
Err: err,
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
func (err *TaskfileDecodeError) Error() string {
|
|
68
|
+
buf := &bytes.Buffer{}
|
|
69
|
+
|
|
70
|
+
// Print the error message
|
|
71
|
+
if err.Message != "" {
|
|
72
|
+
fmt.Fprintln(buf, color.RedString("err: %s", err.Message))
|
|
73
|
+
} else {
|
|
74
|
+
// Extract the errors from the TypeError
|
|
75
|
+
te := &yaml.TypeError{}
|
|
76
|
+
if errors.As(err.Err, &te) {
|
|
77
|
+
if len(te.Errors) > 1 {
|
|
78
|
+
fmt.Fprintln(buf, color.RedString("errs:"))
|
|
79
|
+
for _, message := range te.Errors {
|
|
80
|
+
fmt.Fprintln(buf, color.RedString("- %s", extractTypeErrorMessage(message)))
|
|
81
|
+
}
|
|
82
|
+
} else {
|
|
83
|
+
fmt.Fprintln(buf, color.RedString("err: %s", extractTypeErrorMessage(te.Errors[0])))
|
|
84
|
+
}
|
|
85
|
+
} else {
|
|
86
|
+
// Otherwise print the error message normally
|
|
87
|
+
fmt.Fprintln(buf, color.RedString("err: %s", err.Err))
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
fmt.Fprintln(buf, color.RedString("file: %s:%d:%d", err.Location, err.Line, err.Column))
|
|
91
|
+
|
|
92
|
+
// Print the snippet
|
|
93
|
+
maxLineNumberDigits := digits(err.Snippet.EndLine)
|
|
94
|
+
lineNumberSpacer := strings.Repeat(" ", maxLineNumberDigits)
|
|
95
|
+
columnSpacer := strings.Repeat(" ", err.Column-1)
|
|
96
|
+
for i, line := range err.Snippet.Lines {
|
|
97
|
+
currentLine := err.Snippet.StartLine + i + 1
|
|
98
|
+
|
|
99
|
+
lineIndicator := " "
|
|
100
|
+
if currentLine == err.Line {
|
|
101
|
+
lineIndicator = ">"
|
|
102
|
+
}
|
|
103
|
+
columnIndicator := "^"
|
|
104
|
+
|
|
105
|
+
// Print each line
|
|
106
|
+
lineIndicator = color.RedString(lineIndicator)
|
|
107
|
+
columnIndicator = color.RedString(columnIndicator)
|
|
108
|
+
lineNumberFormat := fmt.Sprintf("%%%dd", maxLineNumberDigits)
|
|
109
|
+
lineNumber := fmt.Sprintf(lineNumberFormat, currentLine)
|
|
110
|
+
fmt.Fprintf(buf, "%s %s | %s", lineIndicator, lineNumber, line)
|
|
111
|
+
|
|
112
|
+
// Print the column indicator
|
|
113
|
+
if currentLine == err.Line {
|
|
114
|
+
fmt.Fprintf(buf, "\n %s | %s%s", lineNumberSpacer, columnSpacer, columnIndicator)
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// If there are more lines to print, add a newline
|
|
118
|
+
if i < len(err.Snippet.Lines)-1 {
|
|
119
|
+
fmt.Fprintln(buf)
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
return buf.String()
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
func (err *TaskfileDecodeError) Unwrap() error {
|
|
127
|
+
return err.Err
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
func (err *TaskfileDecodeError) Code() int {
|
|
131
|
+
return CodeTaskfileDecode
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
func (err *TaskfileDecodeError) WithMessage(format string, a ...any) *TaskfileDecodeError {
|
|
135
|
+
err.Message = fmt.Sprintf(format, a...)
|
|
136
|
+
return err
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
func (err *TaskfileDecodeError) WithTypeMessage(t string) *TaskfileDecodeError {
|
|
140
|
+
err.Message = fmt.Sprintf("cannot unmarshal %s into %s", err.Tag, t)
|
|
141
|
+
return err
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
func (err *TaskfileDecodeError) WithFileInfo(location string, b []byte, padding int) *TaskfileDecodeError {
|
|
145
|
+
buf := &bytes.Buffer{}
|
|
146
|
+
if err := quick.Highlight(buf, string(b), "yaml", "terminal", "task"); err != nil {
|
|
147
|
+
buf.WriteString(string(b))
|
|
148
|
+
}
|
|
149
|
+
lines := strings.Split(buf.String(), "\n")
|
|
150
|
+
start := max(err.Line-1-padding, 0)
|
|
151
|
+
end := min(err.Line+padding, len(lines)-1)
|
|
152
|
+
|
|
153
|
+
err.Location = location
|
|
154
|
+
err.Snippet = TaskfileSnippet{
|
|
155
|
+
Lines: lines[start:end],
|
|
156
|
+
StartLine: start,
|
|
157
|
+
EndLine: end,
|
|
158
|
+
Padding: padding,
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return err
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
func extractTypeErrorMessage(message string) string {
|
|
165
|
+
matches := typeErrorRegex.FindStringSubmatch(message)
|
|
166
|
+
if len(matches) == 2 {
|
|
167
|
+
return matches[1]
|
|
168
|
+
}
|
|
169
|
+
return message
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
func digits(number int) int {
|
|
173
|
+
count := 0
|
|
174
|
+
for number != 0 {
|
|
175
|
+
number /= 10
|
|
176
|
+
count += 1
|
|
177
|
+
}
|
|
178
|
+
return count
|
|
179
|
+
}
|
|
@@ -12,14 +12,14 @@ const (
|
|
|
12
12
|
const (
|
|
13
13
|
CodeTaskfileNotFound int = iota + 100
|
|
14
14
|
CodeTaskfileAlreadyExists
|
|
15
|
-
|
|
15
|
+
CodeTaskfileDecode
|
|
16
16
|
CodeTaskfileFetchFailed
|
|
17
17
|
CodeTaskfileNotTrusted
|
|
18
18
|
CodeTaskfileNotSecure
|
|
19
19
|
CodeTaskfileCacheNotFound
|
|
20
20
|
CodeTaskfileVersionCheckError
|
|
21
21
|
CodeTaskfileNetworkTimeout
|
|
22
|
-
|
|
22
|
+
CodeTaskfileInvalid
|
|
23
23
|
CodeTaskfileCycle
|
|
24
24
|
)
|
|
25
25
|
|
|
@@ -58,3 +58,8 @@ func Is(err, target error) bool {
|
|
|
58
58
|
func As(err error, target any) bool {
|
|
59
59
|
return errors.As(err, target)
|
|
60
60
|
}
|
|
61
|
+
|
|
62
|
+
// Unwrap wraps the standard errors.Unwrap function so that we don't need to alias that package.
|
|
63
|
+
func Unwrap(err error) error {
|
|
64
|
+
return errors.Unwrap(err)
|
|
65
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<style name="task">
|
|
2
|
+
<entry type="Background" style="bg:#eee8d5"/>
|
|
3
|
+
<entry type="Keyword" style="#859900"/>
|
|
4
|
+
<entry type="KeywordConstant" style=""/>
|
|
5
|
+
<entry type="KeywordNamespace" style="#dc322f"/>
|
|
6
|
+
<entry type="KeywordType" style=""/>
|
|
7
|
+
<entry type="Name" style="#268bd2"/>
|
|
8
|
+
<entry type="NameBuiltin" style="#cb4b16"/>
|
|
9
|
+
<entry type="NameClass" style="#cb4b16"/>
|
|
10
|
+
<entry type="NameTag" style=""/>
|
|
11
|
+
<entry type="Literal" style="#2aa198"/>
|
|
12
|
+
<entry type="LiteralNumber" style=""/>
|
|
13
|
+
<entry type="OperatorWord" style="#859900"/>
|
|
14
|
+
<entry type="Comment" style="italic #93a1a1"/>
|
|
15
|
+
<entry type="Generic" style="#d33682"/>
|
|
16
|
+
<entry type="Text" style="#586e75"/>
|
|
17
|
+
</style>
|
|
@@ -3,12 +3,14 @@ module github.com/go-task/task/v3
|
|
|
3
3
|
go 1.21.0
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
|
+
github.com/Ladicle/tabwriter v1.0.0
|
|
6
7
|
github.com/Masterminds/semver/v3 v3.2.1
|
|
8
|
+
github.com/alecthomas/chroma/v2 v2.14.0
|
|
7
9
|
github.com/davecgh/go-spew v1.1.1
|
|
8
10
|
github.com/dominikbraun/graph v0.23.0
|
|
9
|
-
github.com/fatih/color v1.
|
|
11
|
+
github.com/fatih/color v1.17.0
|
|
10
12
|
github.com/go-task/slim-sprig/v3 v3.0.0
|
|
11
|
-
github.com/go-task/template v0.0.0-
|
|
13
|
+
github.com/go-task/template v0.0.0-20240602015157-960e6f576656
|
|
12
14
|
github.com/joho/godotenv v1.5.1
|
|
13
15
|
github.com/mattn/go-zglob v0.0.4
|
|
14
16
|
github.com/mitchellh/hashstructure/v2 v2.0.2
|
|
@@ -19,17 +21,18 @@ require (
|
|
|
19
21
|
github.com/stretchr/testify v1.9.0
|
|
20
22
|
github.com/zeebo/xxh3 v1.0.2
|
|
21
23
|
golang.org/x/sync v0.7.0
|
|
22
|
-
golang.org/x/term v0.
|
|
24
|
+
golang.org/x/term v0.21.0
|
|
23
25
|
gopkg.in/yaml.v3 v3.0.1
|
|
24
26
|
mvdan.cc/sh/v3 v3.8.0
|
|
25
27
|
)
|
|
26
28
|
|
|
27
29
|
require (
|
|
30
|
+
github.com/dlclark/regexp2 v1.11.0 // indirect
|
|
28
31
|
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
|
|
29
32
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
30
33
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
31
34
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
32
35
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
33
|
-
golang.org/x/sys v0.
|
|
36
|
+
golang.org/x/sys v0.21.0 // indirect
|
|
34
37
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
35
38
|
)
|