From 3b91dad96386adc060e60cbe8bd8191e2b05910a Mon Sep 17 00:00:00 2001 From: jnsdls Date: Mon, 23 Sep 2024 19:41:42 +0000 Subject: [PATCH] Remove "push" script and task (#4762) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## PR-Codex overview This PR focuses on modifying the `turbo.json` and `package.json` configuration files, specifically removing certain caching options and adjusting command scripts related to the build process. ### Detailed summary - In `turbo.json`, removed the `push` configuration and its `cache` and `dependsOn` settings. - In `package.json`, removed the `push` script that executed `turbo run push --filter=./packages/*`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- package.json | 1 - turbo.json | 4 ---- 2 files changed, 5 deletions(-) diff --git a/package.json b/package.json index 38a6b53a2dc..ecf24fd32f1 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,6 @@ "release": "node ./scripts/pre-release.mjs && turbo run update-version && pnpm build:release && changeset publish", "version-packages:nightly": "node scripts/pre-nightly.mjs && changeset version --snapshot nightly", "release:nightly": "node ./scripts/pre-release.mjs && turbo run update-version && pnpm build && changeset publish --tag nightly", - "push": "turbo run push --filter=./packages/*", "hotlink-init": "node ./scripts/hotlink/hotlink-init.mjs", "hotlink-revert": "node ./scripts/hotlink/hotlink-revert.mjs" }, diff --git a/turbo.json b/turbo.json index 22bfc24004c..f297060d151 100644 --- a/turbo.json +++ b/turbo.json @@ -84,10 +84,6 @@ }, "clean": { "cache": false - }, - "push": { - "cache": false, - "dependsOn": ["build"] } } }