From b377e259852b9ae169e83fb7db8bcba1e0cd8d42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas?= Date: Mon, 9 Sep 2024 23:09:24 +0200 Subject: [PATCH] fix: script name --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd4a56a72..5d1422672 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ We bump and publish manually using lerna's [version and publish](https://lerna.j 2. Run `pnpm run version-*` where `*` can be patch, minor or major. 3. Create PR for the release branch 4. From the branch, run `pnpm run publish` and follow the prompts. -5. Run `pnpm run update-stables` to make sure that all the other private packages reference to the new stable release. +5. Run `pnpm run website:update-monorepo-deps` to make sure that all the other private packages reference to the new stable release. 6. Merge release PR #### Alpha Release diff --git a/package.json b/package.json index 034b443f7..94a325234 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "version-major": "lerna version major --no-private", "publish": "lerna publish from-package --no-private", "publish-alpha": "lerna publish from-package --no-private --preid alpha --dist-tag alpha", - "update-stables": "pnpm -r --filter @usecannon/website i @usecannon/builder@latest @usecannon/cli@latest", + "website:update-monorepo-deps": "pnpm --filter @usecannon/website i @usecannon/builder@latest @usecannon/cli@latest", "test": "pnpm -r --if-present --filter './packages/**' run test", "docgen-md": "pnpm -r --if-present run docgen", "changeset": "changeset"