Skip to content

Commit 452c278

Browse files
committed
feat: npm workspace publish fix
1 parent 985769d commit 452c278

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ghost-graphql-ci-tools/src/bin/publish-packages.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const run = async () => {
77
console.log('⌛ version, git commit and push...');
88

99
// @TODO - dynamically pull from somewhere (maybe utilize conventional commits)
10-
npm.version({ versionType: 'patch' });
11-
10+
npm.version({ versionType: 'major' });
11+
git.commit('chore: package.json updates from workspaces publish');
1212
git.push();
1313
console.log('✅ version, git commit and push completed');
1414
npm.publish();

0 commit comments

Comments
 (0)