From ca644e90f9349de5565f94588dc1a0c5772462c4 Mon Sep 17 00:00:00 2001 From: Christopher Allford <6451942+ObliviousHarmony@users.noreply.github.com> Date: Thu, 2 Nov 2023 16:59:15 -0700 Subject: [PATCH] Updated Root Package --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 236e8a4ae25..f26ce051cbd 100644 --- a/package.json +++ b/package.json @@ -21,14 +21,14 @@ "utils": "./tools/monorepo-utils/bin/run" }, "scripts": { - "build": "pnpm exec turbo run turbo:build", - "test": "pnpm exec turbo run turbo:test", + "build": "pnpm -r build", + "test": "pnpm -r test", + "cherry-pick": "node ./tools/cherry-pick/bin/run", "clean": "pnpm store prune && git clean -fx **/node_modules && pnpm i", "preinstall": "npx only-allow pnpm", "postinstall": "pnpm git:update-hooks", "git:update-hooks": "if test -d .git; then rm -r .git/hooks && mkdir -p .git/hooks && husky install; else husky install; fi", "create-extension": "node ./tools/create-extension/index.js", - "cherry-pick": "node ./tools/cherry-pick/bin/run", "sync-dependencies": "pnpm exec syncpack -- fix-mismatches", "utils": "node ./tools/monorepo-utils/dist/index.js" },