Skip to content

Commit

Permalink
don't commit after versioning using npm
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-bravo-yahoo committed Oct 22, 2024
1 parent 64925ee commit ada6dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/version-bump.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ if (scope === 'patch' || ['fix', 'chore', 'docs', 'refactor', 'perf', 'test', 'b
}

console.log(`Parsed commit message:\n${latestCommitMessage}\n\nDetermined the version as ${versionType} (from scope ${scope} and change type ${type}).\n`);
console.log(execSync(`npm version ${versionType}`, { encoding: "utf-8" }));
console.log(execSync(`npm version ${versionType} --no-git-tag-version`, { encoding: "utf-8" }));

0 comments on commit ada6dbb

Please sign in to comment.