This commit is contained in:
mkorwel
2025-07-01 18:46:56 -05:00
parent f6bc51ac8a
commit c3a4988642

View File

@@ -32,8 +32,10 @@ if (!versionType) {
}
// 2. Bump the version in the root and all workspace package.json files.
run(`npm version ${versionType} --no-git-tag-version --allow-same-version`)
run(`npm version ${versionType} --workspaces --no-git-tag-version --allow-same-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');