update version script

This commit is contained in:
mkorwel
2025-07-01 18:22:19 -05:00
parent f8c0afc571
commit f6bc51ac8a

View File

@@ -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');