From ee71477103e8836accbd10672e57cbc652640208 Mon Sep 17 00:00:00 2001 From: Mehul Kar Date: Wed, 15 Nov 2023 13:00:04 -0500 Subject: [PATCH] chore(test): Remove single/double quotes in npm scripts in fixtures (#6459) When running these tests in Windows, these single and double quotes get printed whereas on Darwin/Linux, they do not. This bug is repoted in npm https://github.com/npm/cli/issues/6968. It would be possible to workaround this by matching output in our prysk tests with regex and making the quotation marks optional, but for most tests that is additional noise that we do not need, so it is simpler to remove the quotes instead. --- .../basic_monorepo/apps/my-app/package.json | 2 +- .../basic_monorepo/packages/util/package.json | 4 +- .../apps/add-keys/package.json | 4 +- .../apps/add-tasks/package.json | 2 +- .../apps/bad-json/package.json | 2 +- .../apps/cached/package.json | 6 +-- .../apps/config-change/package.json | 2 +- .../apps/cross-workspace/package.json | 2 +- .../apps/invalid-config/package.json | 2 +- .../missing-workspace-config/package.json | 8 ++-- .../apps/omit-keys/package.json | 6 +-- .../apps/override-values/package.json | 8 ++-- .../apps/persistent/package.json | 16 ++++---- .../packages/blank-pkg/package.json | 8 ++-- .../apps/a/package.json | 2 +- .../apps/b/package.json | 2 +- .../apps/my-app/package.json | 4 +- .../apps/docs/package.json | 2 +- .../_fixtures/run_logging/app-a/package.json | 8 ++-- .../_fixtures/single_package/package.json | 2 +- .../overwriting/workspace-a/package.json | 4 +- .../overwriting/workspace-b/package.json | 4 +- .../topological/apps/my-app/package.json | 2 +- .../topological/packages/util/package.json | 2 +- .../integration/tests/dry-json/monorepo.t | 12 +++--- .../tests/dry-json/single-package-no-config.t | 8 ++-- .../tests/dry-json/single-package-with-deps.t | 12 +++--- .../tests/dry-json/single_package.t | 8 ++-- turborepo-tests/integration/tests/dry-run.t | 8 ++-- .../integration/tests/edit-turbo-json/task.t | 20 +++++----- .../integration/tests/global-env.t | 10 ++--- .../tests/lockfile-aware-caching/npm.t | 12 +++--- .../tests/lockfile-aware-caching/pnpm.t | 12 +++--- .../tests/lockfile-aware-caching/yarn.t | 12 +++--- .../integration/tests/pkg-inference.t | 4 +- .../tests/prune/composable-config.t | 6 +-- .../excluded-inputs/excluded-inputs.t | 8 ++-- .../tests/run-logging/errors-only.t | 12 +++--- .../tests/run-logging/log_prefix.t | 22 +++++------ .../integration/tests/run-logging/verbosity.t | 24 ++++++------ .../integration/tests/run-summary/discovery.t | 4 +- .../integration/tests/run-summary/error.t | 4 +- turborepo-tests/integration/tests/run/force.t | 26 ++++++------- .../integration/tests/run/one-script-error.t | 22 +++++------ .../tests/run/single-package/dry-run.t | 4 +- .../tests/run/single-package/no-config.t | 12 +++--- .../tests/run/single-package/run-yarn.t | 8 ++-- .../tests/run/single-package/run.t | 8 ++-- .../run/single-package/with-deps-dry-run.t | 6 +-- .../tests/run/single-package/with-deps-run.t | 16 ++++---- .../tests/task-dependencies/overwriting.t | 18 ++++----- .../tests/task-dependencies/topological.t | 8 ++-- .../tests/workspace-configs/add-keys.t | 38 +++++++++---------- .../tests/workspace-configs/add-tasks.t | 4 +- .../tests/workspace-configs/cache.t | 16 ++++---- .../tests/workspace-configs/config-change.t | 6 +-- .../tests/workspace-configs/cross-workspace.t | 8 ++-- .../missing-workspace-config-deps.t | 14 +++---- .../missing-workspace-config.t | 20 +++++----- .../tests/workspace-configs/omit-keys-deps.t | 14 +++---- .../tests/workspace-configs/omit-keys.t | 16 ++++---- .../workspace-configs/override-values-deps.t | 4 +- .../tests/workspace-configs/override-values.t | 24 ++++++------ .../tests/workspace-configs/persistent.t | 8 ++-- 64 files changed, 301 insertions(+), 301 deletions(-) diff --git a/turborepo-tests/integration/tests/_fixtures/basic_monorepo/apps/my-app/package.json b/turborepo-tests/integration/tests/_fixtures/basic_monorepo/apps/my-app/package.json index 6bcf57fd6ff30..1746e0db23610 100644 --- a/turborepo-tests/integration/tests/_fixtures/basic_monorepo/apps/my-app/package.json +++ b/turborepo-tests/integration/tests/_fixtures/basic_monorepo/apps/my-app/package.json @@ -1,7 +1,7 @@ { "name": "my-app", "scripts": { - "build": "echo 'building'", + "build": "echo building", "maybefails": "exit 4" }, "dependencies": { diff --git a/turborepo-tests/integration/tests/_fixtures/basic_monorepo/packages/util/package.json b/turborepo-tests/integration/tests/_fixtures/basic_monorepo/packages/util/package.json index 4d57bb28c9967..e755064fd7893 100644 --- a/turborepo-tests/integration/tests/_fixtures/basic_monorepo/packages/util/package.json +++ b/turborepo-tests/integration/tests/_fixtures/basic_monorepo/packages/util/package.json @@ -1,7 +1,7 @@ { "name": "util", "scripts": { - "build": "echo 'building'", - "maybefails": "echo 'did not fail'" + "build": "echo building", + "maybefails": "echo didnotfail" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-keys/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-keys/package.json index 2e576b50e43f7..88c854d473b0e 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-keys/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-keys/package.json @@ -1,8 +1,8 @@ { "name": "add-keys", "scripts": { - "add-keys-task": "echo \"running add-keys-task\" > out/foo.min.txt", - "add-keys-underlying-task": "echo \"running add-keys-underlying-task\"" + "add-keys-task": "echo running-add-keys-task > out/foo.min.txt", + "add-keys-underlying-task": "echo running-add-keys-underlying-task" }, "dependencies": { "blank-pkg": "*" diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-tasks/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-tasks/package.json index e41cd6efca97a..5e4ea4c030491 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-tasks/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/add-tasks/package.json @@ -1,7 +1,7 @@ { "name": "add-tasks", "scripts": { - "added-task": "echo \"running added-task\" > out/foo.min.txt" + "added-task": "echo running-added-task > out/foo.min.txt" }, "dependencies": { "blank-pkg": "*" diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/bad-json/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/bad-json/package.json index e118a37603edb..07e74f15b1751 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/bad-json/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/bad-json/package.json @@ -1,6 +1,6 @@ { "name": "bad-json", "scripts": { - "trailing-comma": "echo 'trailing-comma'" + "trailing-comma": "echo trailing-comma" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cached/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cached/package.json index 1ac157237884e..f2ace68bf01b5 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cached/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cached/package.json @@ -1,8 +1,8 @@ { "name": "cached", "scripts": { - "cached-task-1": "echo 'cached-task-1' > out/foo.min.txt", - "cached-task-2": "echo 'cached-task-2' > out/foo.min.txt", - "cached-task-3": "echo 'cached-task-3' > out/foo.min.txt" + "cached-task-1": "echo cached-task-1 > out/foo.min.txt", + "cached-task-2": "echo cached-task-2 > out/foo.min.txt", + "cached-task-3": "echo cached-task-3 > out/foo.min.txt" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/config-change/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/config-change/package.json index ea37b9a90f2ee..ed6f529752198 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/config-change/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/config-change/package.json @@ -1,6 +1,6 @@ { "name": "config-change", "scripts": { - "config-change-task": "echo 'config-change-task'" + "config-change-task": "echo config-change-task" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cross-workspace/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cross-workspace/package.json index 3c89cdb8a41e8..b4b9b449fd442 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cross-workspace/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/cross-workspace/package.json @@ -1,6 +1,6 @@ { "name": "cross-workspace", "scripts": { - "cross-workspace-task": "echo \"cross-workspace-task\"" + "cross-workspace-task": "echo cross-workspace-task" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/invalid-config/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/invalid-config/package.json index b033b4cece044..5a9c110af5682 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/invalid-config/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/invalid-config/package.json @@ -1,6 +1,6 @@ { "name": "invalid-config", "scripts": { - "build": "echo 'build invalid-config' > out/foo.min.txt" + "build": "echo build-invalid-config > out/foo.min.txt" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/missing-workspace-config/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/missing-workspace-config/package.json index 1c4c93e495d16..1cb6156863ffd 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/missing-workspace-config/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/missing-workspace-config/package.json @@ -1,10 +1,10 @@ { "name": "missing-workspace-config", "scripts": { - "missing-workspace-config-task": "echo \"running missing-workspace-config-task\" > out/foo.min.txt", - "missing-workspace-config-task-with-deps": "echo \"running missing-workspace-config-task-with-deps\" > out/foo.min.txt", - "missing-workspace-config-underlying-task": "echo \"running missing-workspace-config-underlying-task\"", - "cached-task-4": "echo 'cached-task-4' > out/foo.min.txt" + "missing-workspace-config-task": "echo running-missing-workspace-config-task > out/foo.min.txt", + "missing-workspace-config-task-with-deps": "echo running-missing-workspace-config-task-with-deps > out/foo.min.txt", + "missing-workspace-config-underlying-task": "echo running-missing-workspace-config-underlying-task", + "cached-task-4": "echo cached-task-4 > out/foo.min.txt" }, "dependencies": { "blank-pkg": "*" diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/omit-keys/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/omit-keys/package.json index c03cf3bb3aef6..3a204ad3fec47 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/omit-keys/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/omit-keys/package.json @@ -1,9 +1,9 @@ { "name": "omit-keys", "scripts": { - "omit-keys-task": "echo \"running omit-keys-task\" > out/foo.min.txt", - "omit-keys-task-with-deps": "echo \"running omit-keys-task-with-deps\" > out/foo.min.txt", - "omit-keys-underlying-task": "echo \"running omit-keys-underlying-task\"" + "omit-keys-task": "echo running-omit-keys-task > out/foo.min.txt", + "omit-keys-task-with-deps": "echo running-omit-keys-task-with-deps > out/foo.min.txt", + "omit-keys-underlying-task": "echo running-omit-keys-underlying-task" }, "devDependencies": { "blank-pkg": "*" diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/override-values/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/override-values/package.json index 819030c0f5c71..b3dcba10371f7 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/override-values/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/override-values/package.json @@ -1,10 +1,10 @@ { "name": "override-values", "scripts": { - "override-values-task": "echo \"running override-values-task\" > lib/bar.min.txt", - "override-values-task-with-deps": "echo \"running override-values-task-with-deps\" > out/foo.min.txt", - "override-values-task-with-deps-2": "echo \"running override-values-task-with-deps-2\" > out/foo2.min.txt", - "override-values-underlying-task": "echo \"running override-values-underlying-task\"" + "override-values-task": "echo running-override-values-task > lib/bar.min.txt", + "override-values-task-with-deps": "echo running-override-values-task-with-deps > out/foo.min.txt", + "override-values-task-with-deps-2": "echo running-override-values-task-with-deps-2 > out/foo2.min.txt", + "override-values-underlying-task": "echo running-override-values-underlying-task" }, "dependencies": { "blank-pkg": "*" diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/persistent/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/persistent/package.json index e88b70e1503ff..5c45824b11110 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/apps/persistent/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/apps/persistent/package.json @@ -1,13 +1,13 @@ { "name": "persistent", "scripts": { - "persistent-task-1": "echo 'persistent-task-1'", - "persistent-task-2": "echo 'persistent-task-2'", - "persistent-task-3": "echo 'persistent-task-3'", - "persistent-task-4": "echo 'persistent-task-4'", - "persistent-task-1-parent": "echo 'persistent-task-1-parent'", - "persistent-task-2-parent": "echo 'persistent-task-2-parent'", - "persistent-task-3-parent": "echo 'persistent-task-3-parent'", - "persistent-task-4-parent": "echo 'persistent-task-4-parent'" + "persistent-task-1": "echo persistent-task-1", + "persistent-task-2": "echo persistent-task-2", + "persistent-task-3": "echo persistent-task-3", + "persistent-task-4": "echo persistent-task-4", + "persistent-task-1-parent": "echo persistent-task-1-parent", + "persistent-task-2-parent": "echo persistent-task-2-parent", + "persistent-task-3-parent": "echo persistent-task-3-parent", + "persistent-task-4-parent": "echo persistent-task-4-parent" } } diff --git a/turborepo-tests/integration/tests/_fixtures/composable_config/packages/blank-pkg/package.json b/turborepo-tests/integration/tests/_fixtures/composable_config/packages/blank-pkg/package.json index a1d2745f8ae91..d625972aa6d1a 100644 --- a/turborepo-tests/integration/tests/_fixtures/composable_config/packages/blank-pkg/package.json +++ b/turborepo-tests/integration/tests/_fixtures/composable_config/packages/blank-pkg/package.json @@ -1,9 +1,9 @@ { "name": "blank-pkg", "scripts": { - "omit-keys-underlying-topo-task": "echo \"omit-keys-underlying-topo-task from blank-pkg\"", - "missing-workspace-config-underlying-topo-task": "echo \"missing-workspace-config-underlying-topo-task from blank-pkg\"", - "override-values-underlying-topo-task": "echo \"override-values-underlying-topo-task from blank-pkg\"", - "cross-workspace-underlying-task": "echo \"cross-workspace-underlying-task from blank-pkg\"" + "omit-keys-underlying-topo-task": "echo omit-keys-underlying-topo-task from blank-pkg", + "missing-workspace-config-underlying-topo-task": "echo missing-workspace-config-underlying-topo-task from blank-pkg", + "override-values-underlying-topo-task": "echo override-values-underlying-topo-task from blank-pkg", + "cross-workspace-underlying-task": "echo cross-workspace-underlying-task from blank-pkg" } } diff --git a/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/a/package.json b/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/a/package.json index db95f52392f3f..ce0ea6c0b0ba0 100644 --- a/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/a/package.json +++ b/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/a/package.json @@ -1,7 +1,7 @@ { "name": "a", "scripts": { - "build": "echo 'building'" + "build": "echo building" }, "dependencies": { "has-symbols": "^1.0.3" diff --git a/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/b/package.json b/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/b/package.json index 3e16d2d686cbd..337efb3c8e960 100644 --- a/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/b/package.json +++ b/turborepo-tests/integration/tests/_fixtures/lockfile_aware_caching/apps/b/package.json @@ -1,7 +1,7 @@ { "name": "b", "scripts": { - "build": "echo 'building'" + "build": "echo building" }, "dependencies": { "function-bind": "^1.1.1" diff --git a/turborepo-tests/integration/tests/_fixtures/monorepo_one_script_error/apps/my-app/package.json b/turborepo-tests/integration/tests/_fixtures/monorepo_one_script_error/apps/my-app/package.json index 97343eceacc9c..62a7331710d8f 100644 --- a/turborepo-tests/integration/tests/_fixtures/monorepo_one_script_error/apps/my-app/package.json +++ b/turborepo-tests/integration/tests/_fixtures/monorepo_one_script_error/apps/my-app/package.json @@ -1,8 +1,8 @@ { "name": "my-app", "scripts": { - "okay": "echo 'working'", - "okay2": "echo 'working'", + "okay": "echo working", + "okay2": "echo working", "error": "exit 2" } } diff --git a/turborepo-tests/integration/tests/_fixtures/monorepo_with_root_dep/apps/docs/package.json b/turborepo-tests/integration/tests/_fixtures/monorepo_with_root_dep/apps/docs/package.json index 8a2038fcd1753..22f21d137e6d3 100644 --- a/turborepo-tests/integration/tests/_fixtures/monorepo_with_root_dep/apps/docs/package.json +++ b/turborepo-tests/integration/tests/_fixtures/monorepo_with_root_dep/apps/docs/package.json @@ -4,6 +4,6 @@ "shared": "workspace:*" }, "scripts": { - "new-task": "echo 'running new task'" + "new-task": "echo building" } } diff --git a/turborepo-tests/integration/tests/_fixtures/run_logging/app-a/package.json b/turborepo-tests/integration/tests/_fixtures/run_logging/app-a/package.json index d9d7145a33ce7..db4193ea1976e 100644 --- a/turborepo-tests/integration/tests/_fixtures/run_logging/app-a/package.json +++ b/turborepo-tests/integration/tests/_fixtures/run_logging/app-a/package.json @@ -1,9 +1,9 @@ { "name": "app-a", "scripts": { - "build": "echo 'build app-a'", - "builderror": "echo \"error builderror app-a!\" && exit 1", - "builderror2": "echo \"error builderror2 app-a!\" && exit 1", - "buildsuccess": "echo \"buildsuccess app-a!\"" + "build": "echo build-app-a", + "builderror": "echo error-builderror-app-a && exit 1", + "builderror2": "echo error-builderror2-app-a && exit 1", + "buildsuccess": "echo buildsuccess-app-a" } } diff --git a/turborepo-tests/integration/tests/_fixtures/single_package/package.json b/turborepo-tests/integration/tests/_fixtures/single_package/package.json index c38e07c8d8d5f..5519edda652c4 100644 --- a/turborepo-tests/integration/tests/_fixtures/single_package/package.json +++ b/turborepo-tests/integration/tests/_fixtures/single_package/package.json @@ -1,7 +1,7 @@ { "name": "my-pkg", "scripts": { - "build": "echo 'building' > foo.txt", + "build": "echo building > foo.txt", "test": "cat foo.txt" } } diff --git a/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-a/package.json b/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-a/package.json index 83a75937b0dc7..85564bcb9f62a 100644 --- a/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-a/package.json +++ b/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-a/package.json @@ -1,7 +1,7 @@ { "name": "workspace-a", "scripts": { - "build": "echo 'build workspace-a'", - "generate": "echo 'generate workspace-a'" + "build": "echo build-workspace-a", + "generate": "echo generate-workspace-a" } } diff --git a/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-b/package.json b/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-b/package.json index 594de49c21e1f..537e43f3bca3c 100644 --- a/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-b/package.json +++ b/turborepo-tests/integration/tests/_fixtures/task_dependencies/overwriting/workspace-b/package.json @@ -1,7 +1,7 @@ { "name": "workspace-b", "scripts": { - "build": "echo 'build workspace-b'", - "generate": "echo 'generate workspace-b'" + "build": "echo build-workspace-b", + "generate": "echo generate-workspace-b" } } diff --git a/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/apps/my-app/package.json b/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/apps/my-app/package.json index f2a5d2525f399..162bcddf217ef 100644 --- a/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/apps/my-app/package.json +++ b/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/apps/my-app/package.json @@ -1,7 +1,7 @@ { "name": "my-app", "scripts": { - "build": "echo 'building'" + "build": "echo building" }, "dependencies": { "util": "*" diff --git a/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/packages/util/package.json b/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/packages/util/package.json index 8d3e121335e16..7309726a1df4e 100644 --- a/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/packages/util/package.json +++ b/turborepo-tests/integration/tests/_fixtures/task_dependencies/topological/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "util", "scripts": { - "build": "echo 'building'" + "build": "echo building" } } diff --git a/turborepo-tests/integration/tests/dry-json/monorepo.t b/turborepo-tests/integration/tests/dry-json/monorepo.t index cdad6f046dd6b..e8cdae331aa82 100644 --- a/turborepo-tests/integration/tests/dry-json/monorepo.t +++ b/turborepo-tests/integration/tests/dry-json/monorepo.t @@ -51,10 +51,10 @@ Setup "taskId": "my-app#build", "task": "build", "package": "my-app", - "hash": "b42768856d16033a", + "hash": "f5b905676d8a275c", "inputs": { ".env.local": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - "package.json": "6bcf57fd6ff30d1a6f40ad8d8d08e8b940fc7e3b" + "package.json": "1746e0db2361085b5953a6a3beab08c24af5bc08" }, "hashOfExternalDependencies": "459c029558afe716", "cache": { @@ -63,7 +63,7 @@ Setup "status": "MISS", "timeSaved": 0 }, - "command": "echo 'building'", + "command": "echo building", "cliArguments": [], "outputs": [ "apple.json", @@ -113,9 +113,9 @@ Setup "taskId": "util#build", "task": "build", "package": "util", - "hash": "9b9969f14caa05a4", + "hash": "1ce33e04f265f95c", "inputs": { - "package.json": "4d57bb28c9967640d812981198a743b3188f713e" + "package.json": "e755064fd7893809d10fc067bb409c7ae516327f" }, "hashOfExternalDependencies": "459c029558afe716", "cache": { @@ -124,7 +124,7 @@ Setup "status": "MISS", "timeSaved": 0 }, - "command": "echo 'building'", + "command": "echo building", "cliArguments": [], "outputs": null, "excludedOutputs": null, diff --git a/turborepo-tests/integration/tests/dry-json/single-package-no-config.t b/turborepo-tests/integration/tests/dry-json/single-package-no-config.t index 40c2868ed7147..4cd4cca1d95fc 100644 --- a/turborepo-tests/integration/tests/dry-json/single-package-no-config.t +++ b/turborepo-tests/integration/tests/dry-json/single-package-no-config.t @@ -14,7 +14,7 @@ Setup "rootKey": "HEY STELLLLLLLAAAAAAAAAAAAA", "files": { "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960" + "package.json": "5519edda652c463054307421a3c05ff49f080328" }, "hashOfExternalDependencies": "", "globalDotEnv": null, @@ -34,11 +34,11 @@ Setup { "taskId": "build", "task": "build", - "hash": "db9ab850083a69be", + "hash": "e46d6df5143cae99", "inputs": { ".gitignore": "03b541460c1b836f96f9c0a941ceb48e91a9fd83", "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960", + "package.json": "5519edda652c463054307421a3c05ff49f080328", "somefile.txt": "45b983be36b73c0788dc9cbcb76cbb80fc7bb057" }, "hashOfExternalDependencies": "", @@ -48,7 +48,7 @@ Setup "status": "MISS", "timeSaved": 0 }, - "command": "echo 'building' > foo.txt", + "command": "echo building > foo.txt", "cliArguments": [], "outputs": null, "excludedOutputs": null, diff --git a/turborepo-tests/integration/tests/dry-json/single-package-with-deps.t b/turborepo-tests/integration/tests/dry-json/single-package-with-deps.t index ab6ca2ffc0958..d271cdeac7141 100644 --- a/turborepo-tests/integration/tests/dry-json/single-package-with-deps.t +++ b/turborepo-tests/integration/tests/dry-json/single-package-with-deps.t @@ -12,7 +12,7 @@ Setup "rootKey": "HEY STELLLLLLLAAAAAAAAAAAAA", "files": { "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960", + "package.json": "5519edda652c463054307421a3c05ff49f080328", "somefile.txt": "45b983be36b73c0788dc9cbcb76cbb80fc7bb057" }, "hashOfExternalDependencies": "", @@ -33,11 +33,11 @@ Setup { "taskId": "build", "task": "build", - "hash": "273cd179351c6ef3", + "hash": "f09bf783beacf5c9", "inputs": { ".gitignore": "03b541460c1b836f96f9c0a941ceb48e91a9fd83", "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960", + "package.json": "5519edda652c463054307421a3c05ff49f080328", "somefile.txt": "45b983be36b73c0788dc9cbcb76cbb80fc7bb057", "turbo.json": "bf9ddbce36808b6ea5a0ea2b7ceb400ee6c42c4c" }, @@ -48,7 +48,7 @@ Setup "status": "MISS", "timeSaved": 0 }, - "command": "echo 'building' > foo.txt", + "command": "echo building > foo.txt", "cliArguments": [], "outputs": [ "foo.txt" @@ -89,11 +89,11 @@ Setup { "taskId": "test", "task": "test", - "hash": "f21d7ac37c171ce7", + "hash": "8bfab5dc6b4ccb3b", "inputs": { ".gitignore": "03b541460c1b836f96f9c0a941ceb48e91a9fd83", "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960", + "package.json": "5519edda652c463054307421a3c05ff49f080328", "somefile.txt": "45b983be36b73c0788dc9cbcb76cbb80fc7bb057", "turbo.json": "bf9ddbce36808b6ea5a0ea2b7ceb400ee6c42c4c" }, diff --git a/turborepo-tests/integration/tests/dry-json/single_package.t b/turborepo-tests/integration/tests/dry-json/single_package.t index 0a4060d28d0bb..5ef84fd03d749 100644 --- a/turborepo-tests/integration/tests/dry-json/single_package.t +++ b/turborepo-tests/integration/tests/dry-json/single_package.t @@ -12,7 +12,7 @@ Setup "rootKey": "HEY STELLLLLLLAAAAAAAAAAAAA", "files": { "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960", + "package.json": "5519edda652c463054307421a3c05ff49f080328", "somefile.txt": "45b983be36b73c0788dc9cbcb76cbb80fc7bb057" }, "hashOfExternalDependencies": "", @@ -33,11 +33,11 @@ Setup { "taskId": "build", "task": "build", - "hash": "273cd179351c6ef3", + "hash": "f09bf783beacf5c9", "inputs": { ".gitignore": "03b541460c1b836f96f9c0a941ceb48e91a9fd83", "package-lock.json": "1c117cce37347befafe3a9cba1b8a609b3600021", - "package.json": "c38e07c8d8d5f851dec8cdbc3d103deed82bc960", + "package.json": "5519edda652c463054307421a3c05ff49f080328", "somefile.txt": "45b983be36b73c0788dc9cbcb76cbb80fc7bb057", "turbo.json": "bf9ddbce36808b6ea5a0ea2b7ceb400ee6c42c4c" }, @@ -48,7 +48,7 @@ Setup "status": "MISS", "timeSaved": 0 }, - "command": "echo 'building' > foo.txt", + "command": "echo building > foo.txt", "cliArguments": [], "outputs": [ "foo.txt" diff --git a/turborepo-tests/integration/tests/dry-run.t b/turborepo-tests/integration/tests/dry-run.t index cc77c12cddc98..ae189c8ba79e3 100644 --- a/turborepo-tests/integration/tests/dry-run.t +++ b/turborepo-tests/integration/tests/dry-run.t @@ -32,11 +32,11 @@ Setup my-app#build Task = build\s* (re) Package = my-app\s* (re) - Hash = b42768856d16033a\s* (re) + Hash = f5b905676d8a275c\s* (re) Cached \(Local\) = false\s* (re) Cached \(Remote\) = false\s* (re) Directory = apps\/my-app\s* (re) - Command = echo 'building'\s* (re) + Command = echo building\s* (re) Outputs = apple.json, banana.txt\s* (re) Log File = apps/my-app/.turbo/turbo-build.log\s* (re) Dependencies =\s* (re) @@ -53,11 +53,11 @@ Setup util#build Task = build\s* (re) Package = util\s* (re) - Hash = 9b9969f14caa05a4\s* (re) + Hash = 1ce33e04f265f95c\s* (re) Cached \(Local\) = false\s* (re) Cached \(Remote\) = false\s* (re) Directory = packages/util\s* (re) - Command = echo 'building'\s* (re) + Command = echo building\s* (re) Outputs =\s* (re) Log File = packages/util/.turbo/turbo-build.log\s* (re) Dependencies =\s* (re) diff --git a/turborepo-tests/integration/tests/edit-turbo-json/task.t b/turborepo-tests/integration/tests/edit-turbo-json/task.t index d29eb6c211f1f..135ba9a9ea2a8 100644 --- a/turborepo-tests/integration/tests/edit-turbo-json/task.t +++ b/turborepo-tests/integration/tests/edit-turbo-json/task.t @@ -11,11 +11,11 @@ Baseline task hashes } { "taskId": "my-app#build", - "hash": "90ff09567a6b2356" + "hash": "8a8944ef32696847" } { "taskId": "util#build", - "hash": "9b9969f14caa05a4" + "hash": "1ce33e04f265f95c" } Change only my-app#build @@ -27,11 +27,11 @@ Change only my-app#build } { "taskId": "my-app#build", - "hash": "6c0ac038b6e27281" + "hash": "83bb5352c916557e" } { "taskId": "util#build", - "hash": "9b9969f14caa05a4" + "hash": "1ce33e04f265f95c" } Change my-app#build dependsOn @@ -43,11 +43,11 @@ Change my-app#build dependsOn } { "taskId": "my-app#build", - "hash": "bcaf2a39bbcbcb58" + "hash": "346838a5f9d9a530" } { "taskId": "util#build", - "hash": "9b9969f14caa05a4" + "hash": "1ce33e04f265f95c" } Non-materially modifying the dep graph does nothing. @@ -59,11 +59,11 @@ Non-materially modifying the dep graph does nothing. } { "taskId": "my-app#build", - "hash": "bcaf2a39bbcbcb58" + "hash": "346838a5f9d9a530" } { "taskId": "util#build", - "hash": "9b9969f14caa05a4" + "hash": "1ce33e04f265f95c" } @@ -76,9 +76,9 @@ Change util#build impacts itself and my-app } { "taskId": "my-app#build", - "hash": "807226804bff5475" + "hash": "b15e1a917912cd09" } { "taskId": "util#build", - "hash": "0e5f606c75e19ed2" + "hash": "2ee29eb57d7f69b3" } diff --git a/turborepo-tests/integration/tests/global-env.t b/turborepo-tests/integration/tests/global-env.t index 112921e8d170a..0583c499cac77 100644 --- a/turborepo-tests/integration/tests/global-env.t +++ b/turborepo-tests/integration/tests/global-env.t @@ -9,7 +9,7 @@ Setup \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache miss, executing 9b9969f14caa05a4 + util:build: cache miss, executing 1ce33e04f265f95c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -20,7 +20,7 @@ Setup \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache hit, suppressing logs 9b9969f14caa05a4 + util:build: cache hit, suppressing logs 1ce33e04f265f95c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -31,7 +31,7 @@ Setup \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache miss, executing 5a9a176fe972e778 + util:build: cache miss, executing 70278c4ec3fb5ac9 Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -42,7 +42,7 @@ Setup \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache hit, suppressing logs 9b9969f14caa05a4 + util:build: cache hit, suppressing logs 1ce33e04f265f95c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -53,7 +53,7 @@ Setup \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache miss, executing 4313993b24558b7b + util:build: cache miss, executing 8b12fdc0e2d94c8d Tasks: 1 successful, 1 total Cached: 0 cached, 1 total diff --git a/turborepo-tests/integration/tests/lockfile-aware-caching/npm.t b/turborepo-tests/integration/tests/lockfile-aware-caching/npm.t index 172bfc5168f19..35efd97e70266 100644 --- a/turborepo-tests/integration/tests/lockfile-aware-caching/npm.t +++ b/turborepo-tests/integration/tests/lockfile-aware-caching/npm.t @@ -10,7 +10,7 @@ Populate cache a:build: cache miss, executing [0-9a-f]+ (re) a:build: a:build: > build - a:build: > echo 'building' + a:build: > echo building a:build: a:build: building @@ -25,7 +25,7 @@ Populate cache b:build: cache miss, executing [0-9a-f]+ (re) b:build: b:build: > build - b:build: > echo 'building' + b:build: > echo building b:build: b:build: building @@ -45,7 +45,7 @@ Only b should have a cache miss a:build: cache hit, replaying logs [0-9a-f]+ (re) a:build: a:build: > build - a:build: > echo 'building' + a:build: > echo building a:build: a:build: building @@ -61,7 +61,7 @@ Only b should have a cache miss b:build: cache miss, executing [0-9a-f]+ (re) b:build: b:build: > build - b:build: > echo 'building' + b:build: > echo building b:build: b:build: building @@ -88,7 +88,7 @@ Bump of root workspace invalidates all packages a:build: cache miss, executing [0-9a-f]+ (re) a:build: a:build: > build - a:build: > echo 'building' + a:build: > echo building a:build: a:build: building @@ -103,7 +103,7 @@ Bump of root workspace invalidates all packages b:build: cache miss, executing [0-9a-f]+ (re) b:build: b:build: > build - b:build: > echo 'building' + b:build: > echo building b:build: b:build: building diff --git a/turborepo-tests/integration/tests/lockfile-aware-caching/pnpm.t b/turborepo-tests/integration/tests/lockfile-aware-caching/pnpm.t index 9559c6508f5de..0cce381ab3271 100644 --- a/turborepo-tests/integration/tests/lockfile-aware-caching/pnpm.t +++ b/turborepo-tests/integration/tests/lockfile-aware-caching/pnpm.t @@ -10,7 +10,7 @@ Populate cache a:build: cache miss, executing [0-9a-f]+ (re) a:build: a:build: > a@ build .*/apps/a (re) - a:build: > echo 'building' + a:build: > echo building a:build: a:build: building @@ -25,7 +25,7 @@ Populate cache b:build: cache miss, executing [0-9a-f]+ (re) b:build: b:build: > b@ build .*/apps/b (re) - b:build: > echo 'building' + b:build: > echo building b:build: b:build: building @@ -45,7 +45,7 @@ Only b should have a cache miss a:build: cache hit, replaying logs [0-9a-f]+ (re) a:build: a:build: > a@ build .*/apps/a (re) - a:build: > echo 'building' + a:build: > echo building a:build: a:build: building @@ -61,7 +61,7 @@ Only b should have a cache miss b:build: cache miss, executing [0-9a-f]+ (re) b:build: b:build: > b@ build .*/apps/b (re) - b:build: > echo 'building' + b:build: > echo building b:build: b:build: building @@ -88,7 +88,7 @@ Bump of root workspace invalidates all packages a:build: cache miss, executing [0-9a-f]+ (re) a:build: a:build: > a@ build .*/apps/a (re) - a:build: > echo 'building' + a:build: > echo building a:build: a:build: building @@ -103,7 +103,7 @@ Bump of root workspace invalidates all packages b:build: cache miss, executing [0-9a-f]+ (re) b:build: b:build: > b@ build .*/apps/b (re) - b:build: > echo 'building' + b:build: > echo building b:build: b:build: building diff --git a/turborepo-tests/integration/tests/lockfile-aware-caching/yarn.t b/turborepo-tests/integration/tests/lockfile-aware-caching/yarn.t index e77740e2d49f6..2d796c4a82277 100644 --- a/turborepo-tests/integration/tests/lockfile-aware-caching/yarn.t +++ b/turborepo-tests/integration/tests/lockfile-aware-caching/yarn.t @@ -10,7 +10,7 @@ Populate cache a:build: cache miss, executing [0-9a-f]+ (re) a:build: yarn run v1.22.19 a:build: warning package.json: No license field - a:build: $ echo 'building' + a:build: $ echo building a:build: building a:build: Done in [\.0-9]+m?s\. (re) @@ -25,7 +25,7 @@ Populate cache b:build: cache miss, executing [0-9a-f]+ (re) b:build: yarn run v1.22.19 b:build: warning package.json: No license field - b:build: $ echo 'building' + b:build: $ echo building b:build: building b:build: Done in [\.0-9]+m?s\. (re) @@ -45,7 +45,7 @@ Only b should have a cache miss a:build: cache hit, replaying logs [0-9a-f]+ (re) a:build: yarn run v1.22.19 a:build: warning package.json: No license field - a:build: $ echo 'building' + a:build: $ echo building a:build: building a:build: Done in [\.0-9]+m?s\. (re) @@ -61,7 +61,7 @@ Only b should have a cache miss b:build: cache miss, executing [0-9a-f]+ (re) b:build: yarn run v1.22.19 b:build: warning package.json: No license field - b:build: $ echo 'building' + b:build: $ echo building b:build: building b:build: Done in [\.0-9]+m?s\. (re) @@ -88,7 +88,7 @@ Bump of root workspace invalidates all packages a:build: cache miss, executing [0-9a-f]+ (re) a:build: yarn run v1.22.19 a:build: warning package.json: No license field - a:build: $ echo 'building' + a:build: $ echo building a:build: building a:build: Done in [\.0-9]+m?s\. (re) @@ -103,7 +103,7 @@ Bump of root workspace invalidates all packages b:build: cache miss, executing [0-9a-f]+ (re) b:build: yarn run v1.22.19 b:build: warning package.json: No license field - b:build: $ echo 'building' + b:build: $ echo building b:build: building b:build: Done in [\.0-9]+m?s\. (re) diff --git a/turborepo-tests/integration/tests/pkg-inference.t b/turborepo-tests/integration/tests/pkg-inference.t index cc64b1c3ef98d..c36643064a71c 100644 --- a/turborepo-tests/integration/tests/pkg-inference.t +++ b/turborepo-tests/integration/tests/pkg-inference.t @@ -7,10 +7,10 @@ Setup \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache miss, executing 9b9969f14caa05a4 + util:build: cache miss, executing 1ce33e04f265f95c util:build: util:build: > build - util:build: > echo 'building' + util:build: > echo building util:build: util:build: building diff --git a/turborepo-tests/integration/tests/prune/composable-config.t b/turborepo-tests/integration/tests/prune/composable-config.t index 1ffa4987035cd..640414b03fd6f 100644 --- a/turborepo-tests/integration/tests/prune/composable-config.t +++ b/turborepo-tests/integration/tests/prune/composable-config.t @@ -12,12 +12,12 @@ Make sure that the internal util package is part of the prune output \xe2\x80\xa2 Packages in scope: docs, shared, util (esc) \xe2\x80\xa2 Running new-task in 3 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - docs:new-task: cache miss, executing b5f97accc6d45bca + docs:new-task: cache miss, executing caf7e46550cd3151 docs:new-task: docs:new-task: > docs@ new-task .*out/apps/docs (re) - docs:new-task: > echo 'running new task' + docs:new-task: > echo building docs:new-task: - docs:new-task: running new task + docs:new-task: building Tasks: 1 successful, 1 total Cached: 0 cached, 1 total diff --git a/turborepo-tests/integration/tests/run-caching/excluded-inputs/excluded-inputs.t b/turborepo-tests/integration/tests/run-caching/excluded-inputs/excluded-inputs.t index eefa536a36acd..18fcf728683fb 100644 --- a/turborepo-tests/integration/tests/run-caching/excluded-inputs/excluded-inputs.t +++ b/turborepo-tests/integration/tests/run-caching/excluded-inputs/excluded-inputs.t @@ -10,10 +10,10 @@ Running build for my-app succeeds \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache miss, executing 94249a7280a39143 + my-app:build: cache miss, executing 2fa14ad1b3e50ac8 my-app:build: my-app:build: > build - my-app:build: > echo 'building' + my-app:build: > echo building my-app:build: my-app:build: building @@ -27,10 +27,10 @@ Update exluded file and try again \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache hit, replaying logs 94249a7280a39143 + my-app:build: cache hit, replaying logs 2fa14ad1b3e50ac8 my-app:build: my-app:build: > build - my-app:build: > echo 'building' + my-app:build: > echo building my-app:build: my-app:build: building diff --git a/turborepo-tests/integration/tests/run-logging/errors-only.t b/turborepo-tests/integration/tests/run-logging/errors-only.t index b0fa8897a749c..5694dc4ec1f18 100644 --- a/turborepo-tests/integration/tests/run-logging/errors-only.t +++ b/turborepo-tests/integration/tests/run-logging/errors-only.t @@ -38,12 +38,12 @@ Setup \xe2\x80\xa2 Packages in scope: app-a (esc) \xe2\x80\xa2 Running builderror in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - app-a:builderror: cache miss, executing 76f9cde7c640a786 + app-a:builderror: cache miss, executing 63f09c22afb626a8 app-a:builderror: app-a:builderror: > builderror - app-a:builderror: > echo "error builderror app-a!" && exit 1 + app-a:builderror: > echo error-builderror-app-a && exit 1 app-a:builderror: - app-a:builderror: error builderror app-a! + app-a:builderror: error-builderror-app-a app-a:builderror: npm ERR! Lifecycle script `builderror` failed with error: app-a:builderror: npm ERR! Error: command failed app-a:builderror: npm ERR! in workspace: app-a @@ -68,12 +68,12 @@ Setup \xe2\x80\xa2 Packages in scope: app-a (esc) \xe2\x80\xa2 Running builderror2 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - app-a:builderror2: cache miss, executing 3c923821fa8cd7b6 + app-a:builderror2: cache miss, executing 7303c469d075d34c app-a:builderror2: app-a:builderror2: > builderror2 - app-a:builderror2: > echo "error builderror2 app-a!" && exit 1 + app-a:builderror2: > echo error-builderror2-app-a && exit 1 app-a:builderror2: - app-a:builderror2: error builderror2 app-a! + app-a:builderror2: error-builderror2-app-a app-a:builderror2: npm ERR! Lifecycle script `builderror2` failed with error: app-a:builderror2: npm ERR! Error: command failed app-a:builderror2: npm ERR! in workspace: app-a diff --git a/turborepo-tests/integration/tests/run-logging/log_prefix.t b/turborepo-tests/integration/tests/run-logging/log_prefix.t index af95d02f83c72..32688036f45bd 100644 --- a/turborepo-tests/integration/tests/run-logging/log_prefix.t +++ b/turborepo-tests/integration/tests/run-logging/log_prefix.t @@ -7,12 +7,12 @@ Setup \xe2\x80\xa2 Packages in scope: app-a (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - cache miss, executing 724fbf5201e1b2c8 + cache miss, executing 6b91fee8d61438d4 \> build (re) - \> echo 'build app-a' (re) + \> echo build-app-a (re) - build app-a + build-app-a Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -22,21 +22,21 @@ Setup $ cat app-a/.turbo/turbo-build.log \> build (re) - \> echo 'build app-a' (re) + \> echo build-app-a (re) - build app-a + build-app-a # Running again should get a cache hit and no prefixes $ ${TURBO} run build --log-prefix=none \xe2\x80\xa2 Packages in scope: app-a (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - cache hit, replaying logs 724fbf5201e1b2c8 + cache hit, replaying logs 6b91fee8d61438d4 \> build (re) - \> echo 'build app-a' (re) + \> echo build-app-a (re) - build app-a + build-app-a Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -47,12 +47,12 @@ Setup \xe2\x80\xa2 Packages in scope: app-a (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - app-a:build: cache hit, replaying logs 724fbf5201e1b2c8 + app-a:build: cache hit, replaying logs 6b91fee8d61438d4 app-a:build: app-a:build: > build - app-a:build: > echo 'build app-a' + app-a:build: > echo build-app-a app-a:build: - app-a:build: build app-a + app-a:build: build-app-a Tasks: 1 successful, 1 total Cached: 1 cached, 1 total diff --git a/turborepo-tests/integration/tests/run-logging/verbosity.t b/turborepo-tests/integration/tests/run-logging/verbosity.t index f579dab8a3d2e..49a7a2a6bcc25 100644 --- a/turborepo-tests/integration/tests/run-logging/verbosity.t +++ b/turborepo-tests/integration/tests/run-logging/verbosity.t @@ -8,10 +8,10 @@ Verbosity level 1 \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache bypass, force executing 9b9969f14caa05a4 + util:build: cache bypass, force executing 1ce33e04f265f95c util:build: util:build: > build - util:build: > echo 'building' + util:build: > echo building util:build: util:build: building @@ -24,10 +24,10 @@ Verbosity level 1 \xe2\x80\xa2 Packages in scope: util (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache bypass, force executing 9b9969f14caa05a4 + util:build: cache bypass, force executing 1ce33e04f265f95c util:build: util:build: > build - util:build: > echo 'building' + util:build: > echo building util:build: util:build: building @@ -47,7 +47,7 @@ Verbosity level 2 [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::run::global_hash: external deps hash: 459c029558afe716 (re) [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::task_hash: task hash env vars for util:build (re) vars: \[] (re) - [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::task_graph::visitor: task util#build hash is 9b9969f14caa05a4 (re) + [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::task_graph::visitor: task util#build hash is 1ce33e04f265f95c (re) [-0-9:.TWZ+]+ \[DEBUG] turbo: Found go binary at "[\-\w\/\.]+" (re) [-0-9:.TWZ+]+ \[DEBUG] turbo: build tag: rust (re) [-0-9:.TWZ+]+ \[INFO] turbo: skipping turbod since we appear to be in a non-interactive context (re) @@ -67,11 +67,11 @@ Verbosity level 2 \xe2\x80\xa2 Remote caching disabled (esc) [-0-9:.TWZ+]+ \[DEBUG] turbo: task hash env vars for util:build: vars=\[] (re) [-0-9:.TWZ+]+ \[DEBUG] turbo.: start (re) - [-0-9:.TWZ+]+ \[DEBUG] turbo: task hash: value=9b9969f14caa05a4 (re) - util:build: cache bypass, force executing 9b9969f14caa05a4 + [-0-9:.TWZ+]+ \[DEBUG] turbo: task hash: value=1ce33e04f265f95c (re) + util:build: cache bypass, force executing 1ce33e04f265f95c util:build: util:build: > build - util:build: > echo 'building' + util:build: > echo building util:build: util:build: building [-0-9:.TWZ+]+ \[DEBUG] turbo.: caching output: outputs="{\[packages/util/.turbo/turbo-build.log] \[]}" (re) @@ -92,7 +92,7 @@ Verbosity level 2 [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::run::global_hash: external deps hash: 459c029558afe716 (re) [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::task_hash: task hash env vars for util:build (re) vars: [] - [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::task_graph::visitor: task util#build hash is 9b9969f14caa05a4 (re) + [-0-9:.TWZ+]+ \[DEBUG] turborepo_lib::task_graph::visitor: task util#build hash is 1ce33e04f265f95c (re) [-0-9:.TWZ+]+ \[DEBUG] turbo: Found go binary at "[\-\w\/\.]+" (re) [-0-9:.TWZ+]+ \[DEBUG] turbo: build tag: rust (re) [-0-9:.TWZ+]+ \[INFO] turbo: skipping turbod since we appear to be in a non-interactive context (re) @@ -112,11 +112,11 @@ Verbosity level 2 \xe2\x80\xa2 Remote caching disabled (esc) [-0-9:.TWZ+]+ \[DEBUG] turbo: task hash env vars for util:build: vars=\[] (re) [-0-9:.TWZ+]+ \[DEBUG] turbo.: start (re) - [-0-9:.TWZ+]+ \[DEBUG] turbo: task hash: value=9b9969f14caa05a4 (re) - util:build: cache bypass, force executing 9b9969f14caa05a4 + [-0-9:.TWZ+]+ \[DEBUG] turbo: task hash: value=1ce33e04f265f95c (re) + util:build: cache bypass, force executing 1ce33e04f265f95c util:build: util:build: > build - util:build: > echo 'building' + util:build: > echo building util:build: util:build: building [-0-9:.TWZ+]+ \[DEBUG] turbo.: caching output: outputs="{\[packages/util/.turbo/turbo-build.log] \[]}" (re) diff --git a/turborepo-tests/integration/tests/run-summary/discovery.t b/turborepo-tests/integration/tests/run-summary/discovery.t index 15f7394c04cf2..a301004bd6611 100644 --- a/turborepo-tests/integration/tests/run-summary/discovery.t +++ b/turborepo-tests/integration/tests/run-summary/discovery.t @@ -7,10 +7,10 @@ Setup \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache miss, executing b42768856d16033a + my-app:build: cache miss, executing f5b905676d8a275c my-app:build: my-app:build: > build - my-app:build: > echo 'building' + my-app:build: > echo building my-app:build: my-app:build: building diff --git a/turborepo-tests/integration/tests/run-summary/error.t b/turborepo-tests/integration/tests/run-summary/error.t index 324c57a34cd09..7e37f5561a337 100644 --- a/turborepo-tests/integration/tests/run-summary/error.t +++ b/turborepo-tests/integration/tests/run-summary/error.t @@ -33,10 +33,10 @@ Validate that we got a full task summary for the failed task with an error in .e "taskId": "my-app#maybefails", "task": "maybefails", "package": "my-app", - "hash": "b55c6f27415ae745", + "hash": "9626dfcd1fbbdc68", "inputs": { ".env.local": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - "package.json": "6bcf57fd6ff30d1a6f40ad8d8d08e8b940fc7e3b" + "package.json": "1746e0db2361085b5953a6a3beab08c24af5bc08" }, "hashOfExternalDependencies": "459c029558afe716", "cache": { diff --git a/turborepo-tests/integration/tests/run/force.t b/turborepo-tests/integration/tests/run/force.t index bf52383fa8d64..47c19b1a1b54a 100644 --- a/turborepo-tests/integration/tests/run/force.t +++ b/turborepo-tests/integration/tests/run/force.t @@ -25,7 +25,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache miss, executing b42768856d16033a + my-app:build: cache miss, executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -37,7 +37,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -48,7 +48,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -59,7 +59,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache hit, suppressing logs b42768856d16033a + my-app:build: cache hit, suppressing logs f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -70,7 +70,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -82,7 +82,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache hit, suppressing logs b42768856d16033a + my-app:build: cache hit, suppressing logs f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -93,7 +93,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -104,7 +104,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache hit, suppressing logs b42768856d16033a + my-app:build: cache hit, suppressing logs f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -115,7 +115,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -127,7 +127,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache hit, suppressing logs b42768856d16033a + my-app:build: cache hit, suppressing logs f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -138,7 +138,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total @@ -149,7 +149,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache hit, suppressing logs b42768856d16033a + my-app:build: cache hit, suppressing logs f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -160,7 +160,7 @@ baseline to generate cache \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running build in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:build: cache bypass, force executing b42768856d16033a + my-app:build: cache bypass, force executing f5b905676d8a275c Tasks: 1 successful, 1 total Cached: 0 cached, 1 total diff --git a/turborepo-tests/integration/tests/run/one-script-error.t b/turborepo-tests/integration/tests/run/one-script-error.t index 3389b259a8818..9151c9937ed78 100644 --- a/turborepo-tests/integration/tests/run/one-script-error.t +++ b/turborepo-tests/integration/tests/run/one-script-error.t @@ -8,13 +8,13 @@ Note that npm reports any failed script as exit code 1, even though we "exit 2" \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running error in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:okay: cache miss, executing 733b31782fb67b8d + my-app:okay: cache miss, executing ffe52e38e68be53e my-app:okay: my-app:okay: > okay - my-app:okay: > echo 'working' + my-app:okay: > echo working my-app:okay: my-app:okay: working - my-app:error: cache miss, executing b716b240e5c29579 + my-app:error: cache miss, executing 8d3be716599fe376 my-app:error: my-app:error: > error my-app:error: > exit 2 @@ -39,13 +39,13 @@ Make sure error isn't cached \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running error in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:okay: cache hit, replaying logs 733b31782fb67b8d + my-app:okay: cache hit, replaying logs ffe52e38e68be53e my-app:okay: my-app:okay: > okay - my-app:okay: > echo 'working' + my-app:okay: > echo working my-app:okay: my-app:okay: working - my-app:error: cache miss, executing b716b240e5c29579 + my-app:error: cache miss, executing 8d3be716599fe376 my-app:error: my-app:error: > error my-app:error: > exit 2 @@ -70,13 +70,13 @@ Make sure error code isn't swallowed with continue \xe2\x80\xa2 Packages in scope: my-app (esc) \xe2\x80\xa2 Running okay2 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - my-app:okay: cache hit, replaying logs 733b31782fb67b8d + my-app:okay: cache hit, replaying logs ffe52e38e68be53e my-app:okay: my-app:okay: > okay - my-app:okay: > echo 'working' + my-app:okay: > echo working my-app:okay: my-app:okay: working - my-app:error: cache miss, executing b716b240e5c29579 + my-app:error: cache miss, executing 8d3be716599fe376 my-app:error: my-app:error: > error my-app:error: > exit 2 @@ -86,10 +86,10 @@ Make sure error code isn't swallowed with continue my-app:error: npm ERR! in workspace: my-app my-app:error: npm ERR! at location: .*apps/my-app (re) my-app:error: command finished with error, but continuing... - my-app:okay2: cache miss, executing aaa0b726b2a62307 + my-app:okay2: cache miss, executing 13c728e793c08f30 my-app:okay2: my-app:okay2: > okay2 - my-app:okay2: > echo 'working' + my-app:okay2: > echo working my-app:okay2: my-app:okay2: working my-app#error: command \((.*)/apps/my-app\) (.*)npm run error exited \(1\) (re) diff --git a/turborepo-tests/integration/tests/run/single-package/dry-run.t b/turborepo-tests/integration/tests/run/single-package/dry-run.t index 78a709398c234..284add2296714 100644 --- a/turborepo-tests/integration/tests/run/single-package/dry-run.t +++ b/turborepo-tests/integration/tests/run/single-package/dry-run.t @@ -19,10 +19,10 @@ Check Tasks to Run build Task = build\s* (re) - Hash = 273cd179351c6ef3\s* (re) + Hash = f09bf783beacf5c9\s* (re) Cached \(Local\) = false\s* (re) Cached \(Remote\) = false\s* (re) - Command = echo 'building' > foo.txt\s* (re) + Command = echo building > foo.txt\s* (re) Outputs = foo.txt\s* (re) Log File = .turbo/turbo-build.log\s* (re) Dependencies =\s* (re) diff --git a/turborepo-tests/integration/tests/run/single-package/no-config.t b/turborepo-tests/integration/tests/run/single-package/no-config.t index 7b1686f481f58..55f4e16a2d9e3 100644 --- a/turborepo-tests/integration/tests/run/single-package/no-config.t +++ b/turborepo-tests/integration/tests/run/single-package/no-config.t @@ -21,10 +21,10 @@ Check Tasks to Run build Task = build\s* (re) - Hash = db9ab850083a69be\s* (re) + Hash = e46d6df5143cae99\s* (re) Cached \(Local\) = false\s* (re) Cached \(Remote\) = false\s* (re) - Command = echo 'building' > foo.txt\s* (re) + Command = echo building > foo.txt\s* (re) Outputs =\s* (re) Log File = .turbo/turbo-build.log\s* (re) Dependencies =\s* (re) @@ -53,10 +53,10 @@ Run real once $ ${TURBO} run build \xe2\x80\xa2 Running build (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache bypass, force executing db9ab850083a69be + build: cache bypass, force executing e46d6df5143cae99 build: build: > build - build: > echo 'building' > foo.txt + build: > echo building > foo.txt build: Tasks: 1 successful, 1 total @@ -67,10 +67,10 @@ Run a second time, verify no caching because there is no config $ ${TURBO} run build \xe2\x80\xa2 Running build (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache bypass, force executing db9ab850083a69be + build: cache bypass, force executing e46d6df5143cae99 build: build: > build - build: > echo 'building' > foo.txt + build: > echo building > foo.txt build: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/run/single-package/run-yarn.t b/turborepo-tests/integration/tests/run/single-package/run-yarn.t index 0e202d7aa0335..890334ce6b0bc 100644 --- a/turborepo-tests/integration/tests/run/single-package/run-yarn.t +++ b/turborepo-tests/integration/tests/run/single-package/run-yarn.t @@ -9,10 +9,10 @@ Check $ ${TURBO} run build \xe2\x80\xa2 Running build (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache miss, executing da2f0abe0c3bcb7f + build: cache miss, executing 551563378a0c0a7e build: yarn run v1.22.17 build: warning package.json: No license field - build: $ echo 'building' > foo.txt + build: $ echo building > foo.txt build: Done in \s*[\.0-9]+m?s\. (re) Tasks: 1 successful, 1 total @@ -23,10 +23,10 @@ Check $ ${TURBO} run build \xe2\x80\xa2 Running build (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache hit, replaying logs da2f0abe0c3bcb7f + build: cache hit, replaying logs 551563378a0c0a7e build: yarn run v1.22.17 build: warning package.json: No license field - build: $ echo 'building' > foo.txt + build: $ echo building > foo.txt build: Done in \s*[\.0-9]+m?s\. (re) Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/run/single-package/run.t b/turborepo-tests/integration/tests/run/single-package/run.t index 4ede2bfa43cee..6c8acc77ba167 100644 --- a/turborepo-tests/integration/tests/run/single-package/run.t +++ b/turborepo-tests/integration/tests/run/single-package/run.t @@ -6,10 +6,10 @@ Check $ ${TURBO} run build \xe2\x80\xa2 Running build (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache miss, executing 273cd179351c6ef3 + build: cache miss, executing f09bf783beacf5c9 build: build: > build - build: > echo 'building' > foo.txt + build: > echo building > foo.txt build: Tasks: 1 successful, 1 total @@ -23,10 +23,10 @@ Run a second time, verify caching works because there is a config $ ${TURBO} run build \xe2\x80\xa2 Running build (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache hit, replaying logs 273cd179351c6ef3 + build: cache hit, replaying logs f09bf783beacf5c9 build: build: > build - build: > echo 'building' > foo.txt + build: > echo building > foo.txt build: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/run/single-package/with-deps-dry-run.t b/turborepo-tests/integration/tests/run/single-package/with-deps-dry-run.t index 3c94efa53c867..74938f3723ce8 100644 --- a/turborepo-tests/integration/tests/run/single-package/with-deps-dry-run.t +++ b/turborepo-tests/integration/tests/run/single-package/with-deps-dry-run.t @@ -19,10 +19,10 @@ Check Tasks to Run build Task = build\s* (re) - Hash = 273cd179351c6ef3\s* (re) + Hash = f09bf783beacf5c9\s* (re) Cached \(Local\) = false\s* (re) Cached \(Remote\) = false\s* (re) - Command = echo 'building' > foo.txt\s* (re) + Command = echo building > foo.txt\s* (re) Outputs = foo.txt\s* (re) Log File = .turbo/turbo-build.log\s* (re) Dependencies =\s* (re) @@ -38,7 +38,7 @@ Check Framework = \s* (re) test Task = test\s* (re) - Hash = f21d7ac37c171ce7\s* (re) + Hash = 8bfab5dc6b4ccb3b\s* (re) Cached \(Local\) = false\s* (re) Cached \(Remote\) = false\s* (re) Command = cat foo.txt\s* (re) diff --git a/turborepo-tests/integration/tests/run/single-package/with-deps-run.t b/turborepo-tests/integration/tests/run/single-package/with-deps-run.t index 31f71650b0ffe..aebe2475c7ecc 100644 --- a/turborepo-tests/integration/tests/run/single-package/with-deps-run.t +++ b/turborepo-tests/integration/tests/run/single-package/with-deps-run.t @@ -6,12 +6,12 @@ Check $ ${TURBO} run test \xe2\x80\xa2 Running test (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache miss, executing 273cd179351c6ef3 + build: cache miss, executing f09bf783beacf5c9 build: build: > build - build: > echo 'building' > foo.txt + build: > echo building > foo.txt build: - test: cache miss, executing f21d7ac37c171ce7 + test: cache miss, executing 8bfab5dc6b4ccb3b test: test: > test test: > cat foo.txt @@ -26,12 +26,12 @@ Run a second time, verify caching works because there is a config $ ${TURBO} run test \xe2\x80\xa2 Running test (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache hit, replaying logs 273cd179351c6ef3 + build: cache hit, replaying logs f09bf783beacf5c9 build: build: > build - build: > echo 'building' > foo.txt + build: > echo building > foo.txt build: - test: cache hit, replaying logs f21d7ac37c171ce7 + test: cache hit, replaying logs 8bfab5dc6b4ccb3b test: test: > test test: > cat foo.txt @@ -46,8 +46,8 @@ Run with --output-logs=hash-only $ ${TURBO} run test --output-logs=hash-only \xe2\x80\xa2 Running test (esc) \xe2\x80\xa2 Remote caching disabled (esc) - build: cache hit, suppressing logs 273cd179351c6ef3 - test: cache hit, suppressing logs f21d7ac37c171ce7 + build: cache hit, suppressing logs f09bf783beacf5c9 + test: cache hit, suppressing logs 8bfab5dc6b4ccb3b Tasks: 2 successful, 2 total Cached: 2 cached, 2 total diff --git a/turborepo-tests/integration/tests/task-dependencies/overwriting.t b/turborepo-tests/integration/tests/task-dependencies/overwriting.t index e634ec0011aaf..9ce92cc06e497 100644 --- a/turborepo-tests/integration/tests/task-dependencies/overwriting.t +++ b/turborepo-tests/integration/tests/task-dependencies/overwriting.t @@ -12,20 +12,20 @@ Test # workspace-a#generate ran $ cat tmp.log | grep "workspace-a:generate" - workspace-a:generate: cache miss, executing 0f8eb8ca4ccf800c + workspace-a:generate: cache miss, executing b876a84c09681ba1 workspace-a:generate: workspace-a:generate: > generate - workspace-a:generate: > echo 'generate workspace-a' + workspace-a:generate: > echo generate-workspace-a workspace-a:generate: - workspace-a:generate: generate workspace-a + workspace-a:generate: generate-workspace-a workspace-a#build ran $ cat tmp.log | grep "workspace-a:build" - workspace-a:build: cache miss, executing 395dd1beb7362607 + workspace-a:build: cache miss, executing 264da930a689be4e workspace-a:build: workspace-a:build: > build - workspace-a:build: > echo 'build workspace-a' + workspace-a:build: > echo build-workspace-a workspace-a:build: - workspace-a:build: build workspace-a + workspace-a:build: build-workspace-a workspace-b#generate DID NOT run $ cat tmp.log | grep "workspace-b:generate" @@ -33,9 +33,9 @@ workspace-b#generate DID NOT run workspace-b#build ran $ cat tmp.log | grep "workspace-b:build" - workspace-b:build: cache miss, executing aadbe65bee70be0d + workspace-b:build: cache miss, executing 36137fdec800ec2e workspace-b:build: workspace-b:build: > build - workspace-b:build: > echo 'build workspace-b' + workspace-b:build: > echo build-workspace-b workspace-b:build: - workspace-b:build: build workspace-b + workspace-b:build: build-workspace-b diff --git a/turborepo-tests/integration/tests/task-dependencies/topological.t b/turborepo-tests/integration/tests/task-dependencies/topological.t index 2bfde210c130e..67abb6cb2fa3f 100644 --- a/turborepo-tests/integration/tests/task-dependencies/topological.t +++ b/turborepo-tests/integration/tests/task-dependencies/topological.t @@ -7,16 +7,16 @@ Check my-app#build output \xe2\x80\xa2 Packages in scope: //, my-app, util (esc) \xe2\x80\xa2 Running build in 3 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - util:build: cache miss, executing a9488769e770f34c + util:build: cache miss, executing d8a403c3594c01e7 util:build: util:build: > build - util:build: > echo 'building' + util:build: > echo building util:build: util:build: building - my-app:build: cache miss, executing c60056997b3dcc9c + my-app:build: cache miss, executing 6f5a797f7b88130e my-app:build: my-app:build: > build - my-app:build: > echo 'building' + my-app:build: > echo building my-app:build: my-app:build: building diff --git a/turborepo-tests/integration/tests/workspace-configs/add-keys.t b/turborepo-tests/integration/tests/workspace-configs/add-keys.t index 9332ed39c7e36..a004f4e0ff7a9 100644 --- a/turborepo-tests/integration/tests/workspace-configs/add-keys.t +++ b/turborepo-tests/integration/tests/workspace-configs/add-keys.t @@ -15,16 +15,16 @@ Setup \xe2\x80\xa2 Packages in scope: add-keys (esc) \xe2\x80\xa2 Running add-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - add-keys:add-keys-underlying-task: cache miss, executing 6577ac9f841f2ce7 + add-keys:add-keys-underlying-task: cache miss, executing 55e98f0525c841a1 add-keys:add-keys-underlying-task: add-keys:add-keys-underlying-task: > add-keys-underlying-task - add-keys:add-keys-underlying-task: > echo "running add-keys-underlying-task" + add-keys:add-keys-underlying-task: > echo running-add-keys-underlying-task add-keys:add-keys-underlying-task: - add-keys:add-keys-underlying-task: running add-keys-underlying-task - add-keys:add-keys-task: cache miss, executing 7f90674c53096c44 + add-keys:add-keys-underlying-task: running-add-keys-underlying-task + add-keys:add-keys-task: cache miss, executing e3ec4997fd41f641 add-keys:add-keys-task: add-keys:add-keys-task: > add-keys-task - add-keys:add-keys-task: > echo "running add-keys-task" > out/foo.min.txt + add-keys:add-keys-task: > echo running-add-keys-task > out/foo.min.txt add-keys:add-keys-task: Tasks: 2 successful, 2 total @@ -43,13 +43,13 @@ Setup \xe2\x80\xa2 Packages in scope: add-keys (esc) \xe2\x80\xa2 Running add-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - add-keys:add-keys-underlying-task: cache hit, replaying logs 6577ac9f841f2ce7 + add-keys:add-keys-underlying-task: cache hit, replaying logs 55e98f0525c841a1 add-keys:add-keys-underlying-task: add-keys:add-keys-underlying-task: > add-keys-underlying-task - add-keys:add-keys-underlying-task: > echo "running add-keys-underlying-task" + add-keys:add-keys-underlying-task: > echo running-add-keys-underlying-task add-keys:add-keys-underlying-task: - add-keys:add-keys-underlying-task: running add-keys-underlying-task - add-keys:add-keys-task: cache hit, suppressing logs 7f90674c53096c44 + add-keys:add-keys-underlying-task: running-add-keys-underlying-task + add-keys:add-keys-task: cache hit, suppressing logs e3ec4997fd41f641 Tasks: 2 successful, 2 total Cached: 2 cached, 2 total @@ -61,16 +61,16 @@ Setup \xe2\x80\xa2 Packages in scope: add-keys (esc) \xe2\x80\xa2 Running add-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - add-keys:add-keys-underlying-task: cache miss, executing 5f727071a698cd07 + add-keys:add-keys-underlying-task: cache miss, executing ba55d98f67b27080 add-keys:add-keys-underlying-task: add-keys:add-keys-underlying-task: > add-keys-underlying-task - add-keys:add-keys-underlying-task: > echo "running add-keys-underlying-task" + add-keys:add-keys-underlying-task: > echo running-add-keys-underlying-task add-keys:add-keys-underlying-task: - add-keys:add-keys-underlying-task: running add-keys-underlying-task - add-keys:add-keys-task: cache miss, executing 5cbbc6ce667e37d4 + add-keys:add-keys-underlying-task: running-add-keys-underlying-task + add-keys:add-keys-task: cache miss, executing bca4da3171622882 add-keys:add-keys-task: add-keys:add-keys-task: > add-keys-task - add-keys:add-keys-task: > echo "running add-keys-task" > out/foo.min.txt + add-keys:add-keys-task: > echo running-add-keys-task > out/foo.min.txt add-keys:add-keys-task: Tasks: 2 successful, 2 total @@ -82,16 +82,16 @@ Setup \xe2\x80\xa2 Packages in scope: add-keys (esc) \xe2\x80\xa2 Running add-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - add-keys:add-keys-underlying-task: cache hit, replaying logs 5f727071a698cd07 + add-keys:add-keys-underlying-task: cache hit, replaying logs ba55d98f67b27080 add-keys:add-keys-underlying-task: add-keys:add-keys-underlying-task: > add-keys-underlying-task - add-keys:add-keys-underlying-task: > echo "running add-keys-underlying-task" + add-keys:add-keys-underlying-task: > echo running-add-keys-underlying-task add-keys:add-keys-underlying-task: - add-keys:add-keys-underlying-task: running add-keys-underlying-task - add-keys:add-keys-task: cache miss, executing e9057d8964e6d551 + add-keys:add-keys-underlying-task: running-add-keys-underlying-task + add-keys:add-keys-task: cache miss, executing 2249c12778c3ef7b add-keys:add-keys-task: add-keys:add-keys-task: > add-keys-task - add-keys:add-keys-task: > echo "running add-keys-task" > out/foo.min.txt + add-keys:add-keys-task: > echo running-add-keys-task > out/foo.min.txt add-keys:add-keys-task: Tasks: 2 successful, 2 total diff --git a/turborepo-tests/integration/tests/workspace-configs/add-tasks.t b/turborepo-tests/integration/tests/workspace-configs/add-tasks.t index e7f93a30ad860..c949f81b37d37 100644 --- a/turborepo-tests/integration/tests/workspace-configs/add-tasks.t +++ b/turborepo-tests/integration/tests/workspace-configs/add-tasks.t @@ -6,10 +6,10 @@ Setup \xe2\x80\xa2 Packages in scope: add-tasks (esc) \xe2\x80\xa2 Running added-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - add-tasks:added-task: cache miss, executing c1ae9a604e43b4f1 + add-tasks:added-task: cache miss, executing 79780b288549784d add-tasks:added-task: add-tasks:added-task: > added-task - add-tasks:added-task: > echo "running added-task" > out/foo.min.txt + add-tasks:added-task: > echo running-added-task > out/foo.min.txt add-tasks:added-task: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/workspace-configs/cache.t b/turborepo-tests/integration/tests/workspace-configs/cache.t index e2ad4e305acda..e0c200f596b37 100644 --- a/turborepo-tests/integration/tests/workspace-configs/cache.t +++ b/turborepo-tests/integration/tests/workspace-configs/cache.t @@ -14,10 +14,10 @@ This test covers: \xe2\x80\xa2 Packages in scope: cached (esc) \xe2\x80\xa2 Running cached-task-1 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - cached:cached-task-1: cache miss, executing 91b7a44d55888729 + cached:cached-task-1: cache miss, executing 21346f9dc1d8f091 cached:cached-task-1: cached:cached-task-1: > cached-task-1 - cached:cached-task-1: > echo 'cached-task-1' > out/foo.min.txt + cached:cached-task-1: > echo cached-task-1 > out/foo.min.txt cached:cached-task-1: Tasks: 1 successful, 1 total @@ -39,10 +39,10 @@ This test covers: \xe2\x80\xa2 Packages in scope: cached (esc) \xe2\x80\xa2 Running cached-task-2 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - cached:cached-task-2: cache bypass, force executing 4e38035c5cb471cb + cached:cached-task-2: cache bypass, force executing bf7e4ca31119a2ca cached:cached-task-2: cached:cached-task-2: > cached-task-2 - cached:cached-task-2: > echo 'cached-task-2' > out/foo.min.txt + cached:cached-task-2: > echo cached-task-2 > out/foo.min.txt cached:cached-task-2: Tasks: 1 successful, 1 total @@ -61,10 +61,10 @@ no `cache` config in root, cache:false in workspace \xe2\x80\xa2 Packages in scope: cached (esc) \xe2\x80\xa2 Running cached-task-3 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - cached:cached-task-3: cache bypass, force executing 32bce2e85343a062 + cached:cached-task-3: cache bypass, force executing 5a6c15882980e64c cached:cached-task-3: cached:cached-task-3: > cached-task-3 - cached:cached-task-3: > echo 'cached-task-3' > out/foo.min.txt + cached:cached-task-3: > echo cached-task-3 > out/foo.min.txt cached:cached-task-3: Tasks: 1 successful, 1 total @@ -85,10 +85,10 @@ we already have a workspace that doesn't have a config \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running cached-task-4 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:cached-task-4: cache bypass, force executing 334434bc17d38e46 + missing-workspace-config:cached-task-4: cache bypass, force executing 0876b71b756eb6da missing-workspace-config:cached-task-4: missing-workspace-config:cached-task-4: > cached-task-4 - missing-workspace-config:cached-task-4: > echo 'cached-task-4' > out/foo.min.txt + missing-workspace-config:cached-task-4: > echo cached-task-4 > out/foo.min.txt missing-workspace-config:cached-task-4: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/workspace-configs/config-change.t b/turborepo-tests/integration/tests/workspace-configs/config-change.t index 580c716a48c10..39b79066c7619 100644 --- a/turborepo-tests/integration/tests/workspace-configs/config-change.t +++ b/turborepo-tests/integration/tests/workspace-configs/config-change.t @@ -4,13 +4,13 @@ Setup # 1. First run, check the hash $ ${TURBO} run config-change-task --filter=config-change --dry=json | jq .tasks[0].hash - "c516b06a9ba0764f" + "58fafdfda3030039" 2. Run again and assert task hash stays the same $ ${TURBO} run config-change-task --filter=config-change --dry=json | jq .tasks[0].hash - "c516b06a9ba0764f" + "58fafdfda3030039" 3. Change turbo.json and assert that hash changes $ cp $TARGET_DIR/apps/config-change/turbo-changed.json $TARGET_DIR/apps/config-change/turbo.json $ ${TURBO} run config-change-task --filter=config-change --dry=json | jq .tasks[0].hash - "cb1a49184fda4fdc" + "5c193e0718f3a05b" diff --git a/turborepo-tests/integration/tests/workspace-configs/cross-workspace.t b/turborepo-tests/integration/tests/workspace-configs/cross-workspace.t index 752502267251a..09e2ac13877d5 100644 --- a/turborepo-tests/integration/tests/workspace-configs/cross-workspace.t +++ b/turborepo-tests/integration/tests/workspace-configs/cross-workspace.t @@ -5,16 +5,16 @@ Setup \xe2\x80\xa2 Packages in scope: cross-workspace (esc) \xe2\x80\xa2 Running cross-workspace-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - blank-pkg:cross-workspace-underlying-task: cache miss, executing ed489d935c69cbab + blank-pkg:cross-workspace-underlying-task: cache miss, executing 13256295c40d6836 blank-pkg:cross-workspace-underlying-task: blank-pkg:cross-workspace-underlying-task: > cross-workspace-underlying-task - blank-pkg:cross-workspace-underlying-task: > echo "cross-workspace-underlying-task from blank-pkg" + blank-pkg:cross-workspace-underlying-task: > echo cross-workspace-underlying-task from blank-pkg blank-pkg:cross-workspace-underlying-task: blank-pkg:cross-workspace-underlying-task: cross-workspace-underlying-task from blank-pkg - cross-workspace:cross-workspace-task: cache miss, executing 04ad28b3926b16c3 + cross-workspace:cross-workspace-task: cache miss, executing f386c2eceecb7035 cross-workspace:cross-workspace-task: cross-workspace:cross-workspace-task: > cross-workspace-task - cross-workspace:cross-workspace-task: > echo "cross-workspace-task" + cross-workspace:cross-workspace-task: > echo cross-workspace-task cross-workspace:cross-workspace-task: cross-workspace:cross-workspace-task: cross-workspace-task diff --git a/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config-deps.t b/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config-deps.t index 5dc7b1eaa4233..e9c6c1eb9ebc8 100644 --- a/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config-deps.t +++ b/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config-deps.t @@ -16,25 +16,25 @@ Setup \xe2\x80\xa2 Remote caching disabled (esc) $ cat tmp.log | grep "missing-workspace-config:missing-workspace-config-task-with-deps" - missing-workspace-config:missing-workspace-config-task-with-deps: cache miss, executing 11e9ca65b3cd782d + missing-workspace-config:missing-workspace-config-task-with-deps: cache miss, executing cb5a7b7c7ef29b91 missing-workspace-config:missing-workspace-config-task-with-deps: missing-workspace-config:missing-workspace-config-task-with-deps: > missing-workspace-config-task-with-deps - missing-workspace-config:missing-workspace-config-task-with-deps: > echo "running missing-workspace-config-task-with-deps" > out/foo.min.txt + missing-workspace-config:missing-workspace-config-task-with-deps: > echo running-missing-workspace-config-task-with-deps > out/foo.min.txt missing-workspace-config:missing-workspace-config-task-with-deps: $ cat tmp.log | grep "missing-workspace-config:missing-workspace-config-underlying-task" - missing-workspace-config:missing-workspace-config-underlying-task: cache miss, executing 4b2b1345ce8e9a35 + missing-workspace-config:missing-workspace-config-underlying-task: cache miss, executing 26878c99d9f1f2ad missing-workspace-config:missing-workspace-config-underlying-task: missing-workspace-config:missing-workspace-config-underlying-task: > missing-workspace-config-underlying-task - missing-workspace-config:missing-workspace-config-underlying-task: > echo "running missing-workspace-config-underlying-task" + missing-workspace-config:missing-workspace-config-underlying-task: > echo running-missing-workspace-config-underlying-task missing-workspace-config:missing-workspace-config-underlying-task: - missing-workspace-config:missing-workspace-config-underlying-task: running missing-workspace-config-underlying-task + missing-workspace-config:missing-workspace-config-underlying-task: running-missing-workspace-config-underlying-task $ cat tmp.log | grep "blank-pkg:missing-workspace-config-underlying-topo-task" - blank-pkg:missing-workspace-config-underlying-topo-task: cache miss, executing ec3db259096d2811 + blank-pkg:missing-workspace-config-underlying-topo-task: cache miss, executing 86d7535cfbce352a blank-pkg:missing-workspace-config-underlying-topo-task: blank-pkg:missing-workspace-config-underlying-topo-task: > missing-workspace-config-underlying-topo-task - blank-pkg:missing-workspace-config-underlying-topo-task: > echo "missing-workspace-config-underlying-topo-task from blank-pkg" + blank-pkg:missing-workspace-config-underlying-topo-task: > echo missing-workspace-config-underlying-topo-task from blank-pkg blank-pkg:missing-workspace-config-underlying-topo-task: blank-pkg:missing-workspace-config-underlying-topo-task: missing-workspace-config-underlying-topo-task from blank-pkg diff --git a/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config.t b/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config.t index 5af5cc1048343..489ff56707525 100644 --- a/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config.t +++ b/turborepo-tests/integration/tests/workspace-configs/missing-workspace-config.t @@ -12,10 +12,10 @@ Setup \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running missing-workspace-config-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:missing-workspace-config-task: cache miss, executing 0526fb94189f32e9 + missing-workspace-config:missing-workspace-config-task: cache miss, executing fa2b3189d6b42055 missing-workspace-config:missing-workspace-config-task: missing-workspace-config:missing-workspace-config-task: > missing-workspace-config-task - missing-workspace-config:missing-workspace-config-task: > echo "running missing-workspace-config-task" > out/foo.min.txt + missing-workspace-config:missing-workspace-config-task: > echo running-missing-workspace-config-task > out/foo.min.txt missing-workspace-config:missing-workspace-config-task: Tasks: 1 successful, 1 total @@ -34,7 +34,7 @@ Setup \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running missing-workspace-config-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:missing-workspace-config-task: cache hit, suppressing logs 0526fb94189f32e9 + missing-workspace-config:missing-workspace-config-task: cache hit, suppressing logs fa2b3189d6b42055 Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -46,10 +46,10 @@ Setup \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running missing-workspace-config-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:missing-workspace-config-task: cache miss, executing 8bbf2392407bd493 + missing-workspace-config:missing-workspace-config-task: cache miss, executing 2fcb67955fb2c7b7 missing-workspace-config:missing-workspace-config-task: missing-workspace-config:missing-workspace-config-task: > missing-workspace-config-task - missing-workspace-config:missing-workspace-config-task: > echo "running missing-workspace-config-task" > out/foo.min.txt + missing-workspace-config:missing-workspace-config-task: > echo running-missing-workspace-config-task > out/foo.min.txt missing-workspace-config:missing-workspace-config-task: Tasks: 1 successful, 1 total @@ -63,7 +63,7 @@ Setup \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running missing-workspace-config-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:missing-workspace-config-task: cache hit, suppressing logs 8bbf2392407bd493 + missing-workspace-config:missing-workspace-config-task: cache hit, suppressing logs 2fcb67955fb2c7b7 Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -74,10 +74,10 @@ Setup \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running missing-workspace-config-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:missing-workspace-config-task: cache miss, executing 4a7b4b23f63fe57c + missing-workspace-config:missing-workspace-config-task: cache miss, executing 3ad30dba93a44cfc missing-workspace-config:missing-workspace-config-task: missing-workspace-config:missing-workspace-config-task: > missing-workspace-config-task - missing-workspace-config:missing-workspace-config-task: > echo "running missing-workspace-config-task" > out/foo.min.txt + missing-workspace-config:missing-workspace-config-task: > echo running-missing-workspace-config-task > out/foo.min.txt missing-workspace-config:missing-workspace-config-task: Tasks: 1 successful, 1 total @@ -90,10 +90,10 @@ Setup \xe2\x80\xa2 Packages in scope: missing-workspace-config (esc) \xe2\x80\xa2 Running cached-task-4 in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - missing-workspace-config:cached-task-4: cache bypass, force executing b1b396ea12912b72 + missing-workspace-config:cached-task-4: cache bypass, force executing a3402b79e54983c6 missing-workspace-config:cached-task-4: missing-workspace-config:cached-task-4: > cached-task-4 - missing-workspace-config:cached-task-4: > echo 'cached-task-4' > out/foo.min.txt + missing-workspace-config:cached-task-4: > echo cached-task-4 > out/foo.min.txt missing-workspace-config:cached-task-4: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/workspace-configs/omit-keys-deps.t b/turborepo-tests/integration/tests/workspace-configs/omit-keys-deps.t index a79a45abbec5b..a82e414f72d0c 100644 --- a/turborepo-tests/integration/tests/workspace-configs/omit-keys-deps.t +++ b/turborepo-tests/integration/tests/workspace-configs/omit-keys-deps.t @@ -16,25 +16,25 @@ Setup \xe2\x80\xa2 Running omit-keys-task-with-deps in 1 packages (esc) $ cat tmp.log | grep "omit-keys:omit-keys-task-with-deps" - omit-keys:omit-keys-task-with-deps: cache miss, executing e54f9191d29df976 + omit-keys:omit-keys-task-with-deps: cache miss, executing 9a01368558ebb03f omit-keys:omit-keys-task-with-deps: omit-keys:omit-keys-task-with-deps: > omit-keys-task-with-deps - omit-keys:omit-keys-task-with-deps: > echo "running omit-keys-task-with-deps" > out/foo.min.txt + omit-keys:omit-keys-task-with-deps: > echo running-omit-keys-task-with-deps > out/foo.min.txt omit-keys:omit-keys-task-with-deps: $ cat tmp.log | grep "omit-keys:omit-keys-underlying-task" - omit-keys:omit-keys-underlying-task: cache miss, executing 21453021b6a70aa7 + omit-keys:omit-keys-underlying-task: cache miss, executing a2db581d4cbbd3d6 omit-keys:omit-keys-underlying-task: omit-keys:omit-keys-underlying-task: > omit-keys-underlying-task - omit-keys:omit-keys-underlying-task: > echo "running omit-keys-underlying-task" + omit-keys:omit-keys-underlying-task: > echo running-omit-keys-underlying-task omit-keys:omit-keys-underlying-task: - omit-keys:omit-keys-underlying-task: running omit-keys-underlying-task + omit-keys:omit-keys-underlying-task: running-omit-keys-underlying-task $ cat tmp.log | grep "blank-pkg:omit-keys-underlying-topo-task" - blank-pkg:omit-keys-underlying-topo-task: cache miss, executing b3c03108a0966b58 + blank-pkg:omit-keys-underlying-topo-task: cache miss, executing e14022a5380dbf76 blank-pkg:omit-keys-underlying-topo-task: blank-pkg:omit-keys-underlying-topo-task: > omit-keys-underlying-topo-task - blank-pkg:omit-keys-underlying-topo-task: > echo "omit-keys-underlying-topo-task from blank-pkg" + blank-pkg:omit-keys-underlying-topo-task: > echo omit-keys-underlying-topo-task from blank-pkg blank-pkg:omit-keys-underlying-topo-task: blank-pkg:omit-keys-underlying-topo-task: omit-keys-underlying-topo-task from blank-pkg diff --git a/turborepo-tests/integration/tests/workspace-configs/omit-keys.t b/turborepo-tests/integration/tests/workspace-configs/omit-keys.t index 28c6dfa1940d7..37e43cfdca606 100644 --- a/turborepo-tests/integration/tests/workspace-configs/omit-keys.t +++ b/turborepo-tests/integration/tests/workspace-configs/omit-keys.t @@ -15,10 +15,10 @@ Setup \xe2\x80\xa2 Packages in scope: omit-keys (esc) \xe2\x80\xa2 Running omit-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - omit-keys:omit-keys-task: cache miss, executing 51c32b4db159c81a + omit-keys:omit-keys-task: cache miss, executing 0e2764d66f4e31cb omit-keys:omit-keys-task: omit-keys:omit-keys-task: > omit-keys-task - omit-keys:omit-keys-task: > echo "running omit-keys-task" > out/foo.min.txt + omit-keys:omit-keys-task: > echo running-omit-keys-task > out/foo.min.txt omit-keys:omit-keys-task: Tasks: 1 successful, 1 total @@ -37,7 +37,7 @@ Setup \xe2\x80\xa2 Packages in scope: omit-keys (esc) \xe2\x80\xa2 Running omit-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - omit-keys:omit-keys-task: cache hit, suppressing logs 51c32b4db159c81a + omit-keys:omit-keys-task: cache hit, suppressing logs 0e2764d66f4e31cb Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -49,10 +49,10 @@ Setup \xe2\x80\xa2 Packages in scope: omit-keys (esc) \xe2\x80\xa2 Running omit-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - omit-keys:omit-keys-task: cache miss, executing 4562feb30d21a9e2 + omit-keys:omit-keys-task: cache miss, executing 610b5c185bcefc0c omit-keys:omit-keys-task: omit-keys:omit-keys-task: > omit-keys-task - omit-keys:omit-keys-task: > echo "running omit-keys-task" > out/foo.min.txt + omit-keys:omit-keys-task: > echo running-omit-keys-task > out/foo.min.txt omit-keys:omit-keys-task: Tasks: 1 successful, 1 total @@ -66,7 +66,7 @@ Setup \xe2\x80\xa2 Packages in scope: omit-keys (esc) \xe2\x80\xa2 Running omit-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - omit-keys:omit-keys-task: cache hit, suppressing logs 4562feb30d21a9e2 + omit-keys:omit-keys-task: cache hit, suppressing logs 610b5c185bcefc0c Tasks: 1 successful, 1 total Cached: 1 cached, 1 total @@ -77,10 +77,10 @@ Setup \xe2\x80\xa2 Packages in scope: omit-keys (esc) \xe2\x80\xa2 Running omit-keys-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - omit-keys:omit-keys-task: cache miss, executing 02617ddc347c2ea2 + omit-keys:omit-keys-task: cache miss, executing f4229f7e07a5c9b1 omit-keys:omit-keys-task: omit-keys:omit-keys-task: > omit-keys-task - omit-keys:omit-keys-task: > echo "running omit-keys-task" > out/foo.min.txt + omit-keys:omit-keys-task: > echo running-omit-keys-task > out/foo.min.txt omit-keys:omit-keys-task: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/workspace-configs/override-values-deps.t b/turborepo-tests/integration/tests/workspace-configs/override-values-deps.t index afb65d05f4fe2..8d596c07b833b 100644 --- a/turborepo-tests/integration/tests/workspace-configs/override-values-deps.t +++ b/turborepo-tests/integration/tests/workspace-configs/override-values-deps.t @@ -13,10 +13,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task-with-deps in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task-with-deps: cache miss, executing 24d612e894a6fd7e + override-values:override-values-task-with-deps: cache miss, executing 596194c40fbbbca4 override-values:override-values-task-with-deps: override-values:override-values-task-with-deps: > override-values-task-with-deps - override-values:override-values-task-with-deps: > echo "running override-values-task-with-deps" > out/foo.min.txt + override-values:override-values-task-with-deps: > echo running-override-values-task-with-deps > out/foo.min.txt override-values:override-values-task-with-deps: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/workspace-configs/override-values.t b/turborepo-tests/integration/tests/workspace-configs/override-values.t index 25d4465affe23..dc0c759d9a506 100644 --- a/turborepo-tests/integration/tests/workspace-configs/override-values.t +++ b/turborepo-tests/integration/tests/workspace-configs/override-values.t @@ -12,10 +12,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task: cache miss, executing d2a93b134d5dbe50 + override-values:override-values-task: cache miss, executing 24dfa2ce8f15d263 override-values:override-values-task: override-values:override-values-task: > override-values-task - override-values:override-values-task: > echo "running override-values-task" > lib/bar.min.txt + override-values:override-values-task: > echo running-override-values-task > lib/bar.min.txt override-values:override-values-task: Tasks: 1 successful, 1 total @@ -34,10 +34,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task: cache hit, replaying logs d2a93b134d5dbe50 + override-values:override-values-task: cache hit, replaying logs 24dfa2ce8f15d263 override-values:override-values-task: override-values:override-values-task: > override-values-task - override-values:override-values-task: > echo "running override-values-task" > lib/bar.min.txt + override-values:override-values-task: > echo running-override-values-task > lib/bar.min.txt override-values:override-values-task: Tasks: 1 successful, 1 total @@ -50,10 +50,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task: cache miss, executing b0c89191664c28cf + override-values:override-values-task: cache miss, executing 558b071339618227 override-values:override-values-task: override-values:override-values-task: > override-values-task - override-values:override-values-task: > echo "running override-values-task" > lib/bar.min.txt + override-values:override-values-task: > echo running-override-values-task > lib/bar.min.txt override-values:override-values-task: Tasks: 1 successful, 1 total @@ -66,10 +66,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task: cache hit, replaying logs b0c89191664c28cf + override-values:override-values-task: cache hit, replaying logs 558b071339618227 override-values:override-values-task: override-values:override-values-task: > override-values-task - override-values:override-values-task: > echo "running override-values-task" > lib/bar.min.txt + override-values:override-values-task: > echo running-override-values-task > lib/bar.min.txt override-values:override-values-task: Tasks: 1 successful, 1 total @@ -81,10 +81,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task: cache miss, executing a971fd53bd69ec03 + override-values:override-values-task: cache miss, executing c13b940a3427bd1c override-values:override-values-task: override-values:override-values-task: > override-values-task - override-values:override-values-task: > echo "running override-values-task" > lib/bar.min.txt + override-values:override-values-task: > echo running-override-values-task > lib/bar.min.txt override-values:override-values-task: Tasks: 1 successful, 1 total @@ -96,10 +96,10 @@ Setup \xe2\x80\xa2 Packages in scope: override-values (esc) \xe2\x80\xa2 Running override-values-task in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - override-values:override-values-task: cache hit, replaying logs a971fd53bd69ec03 + override-values:override-values-task: cache hit, replaying logs c13b940a3427bd1c override-values:override-values-task: override-values:override-values-task: > override-values-task - override-values:override-values-task: > echo "running override-values-task" > lib/bar.min.txt + override-values:override-values-task: > echo running-override-values-task > lib/bar.min.txt override-values:override-values-task: Tasks: 1 successful, 1 total diff --git a/turborepo-tests/integration/tests/workspace-configs/persistent.t b/turborepo-tests/integration/tests/workspace-configs/persistent.t index 50613c7a03074..bdde2e922318f 100644 --- a/turborepo-tests/integration/tests/workspace-configs/persistent.t +++ b/turborepo-tests/integration/tests/workspace-configs/persistent.t @@ -21,16 +21,16 @@ This test covers: \xe2\x80\xa2 Packages in scope: persistent (esc) \xe2\x80\xa2 Running persistent-task-2-parent in 1 packages (esc) \xe2\x80\xa2 Remote caching disabled (esc) - persistent:persistent-task-2: cache miss, executing 899791c2225002f8 + persistent:persistent-task-2: cache miss, executing 37375b286d724c01 persistent:persistent-task-2: persistent:persistent-task-2: > persistent-task-2 - persistent:persistent-task-2: > echo 'persistent-task-2' + persistent:persistent-task-2: > echo persistent-task-2 persistent:persistent-task-2: persistent:persistent-task-2: persistent-task-2 - persistent:persistent-task-2-parent: cache miss, executing 5e7bc170d610664e + persistent:persistent-task-2-parent: cache miss, executing dfc8c20283d7826a persistent:persistent-task-2-parent: persistent:persistent-task-2-parent: > persistent-task-2-parent - persistent:persistent-task-2-parent: > echo 'persistent-task-2-parent' + persistent:persistent-task-2-parent: > echo persistent-task-2-parent persistent:persistent-task-2-parent: persistent:persistent-task-2-parent: persistent-task-2-parent