Skip to content

Commit

Permalink
chore(root): change the comment
Browse files Browse the repository at this point in the history
    Ticket: WIN-2051
  • Loading branch information
adarsh312 committed Feb 21, 2024
1 parent ddc7557 commit 2f79f33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/prepare-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const incrementVersions = async (preid = 'beta') => {
console.log(`Setting next version for ${json.name} to ${next}`);
json.version = next;
writeFileSync(path.join(modulePath, 'package.json'), JSON.stringify(json, null, 2) + '\n');
// since we're manually setting new versions, we must also reconcile all other lerna packages to now use the 'next' version for this module
// since we're manually setting new versions, we must also reconcile all other lerna packages to use the 'next' version for this module
lernaModuleLocations.forEach((otherModulePath) => {
// skip it for the current version
if (otherModulePath === modulePath) {
Expand Down

0 comments on commit 2f79f33

Please sign in to comment.