From f6bc51ac8a6d8bd94721468068617573989aaaec Mon Sep 17 00:00:00 2001 From: mkorwel Date: Tue, 1 Jul 2025 18:22:19 -0500 Subject: [PATCH] update version script --- scripts/version.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/version.js b/scripts/version.js index 796e3b7ad4..d00d4ab9c5 100644 --- a/scripts/version.js +++ b/scripts/version.js @@ -32,7 +32,8 @@ if (!versionType) { } // 2. Bump the version in the root and all workspace package.json files. -run(`npm version ${versionType} --workspaces --no-git-tag-version`); +run(`npm version ${versionType} --no-git-tag-version --allow-same-version`) +run(`npm version ${versionType} --workspaces --no-git-tag-version --allow-same-version`); // 3. Get the new version number from the root package.json const rootPackageJsonPath = resolve(process.cwd(), 'package.json');