Skip to content

Commit 3301fbe

Browse files
authoredOct 21, 2024··
fix: Allow whatBump to return undefined to skip versioning (#102)
1 parent 2f1dc1e commit 3301fbe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎index.js

+4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ class ConventionalChangelog extends Plugin {
5151

5252
let { releaseType } = result;
5353

54+
if (releaseType == undefined) {
55+
return;
56+
}
57+
5458
if (increment) {
5559
this.log.warn(`The recommended bump is "${releaseType}", but is overridden with "${increment}".`);
5660
releaseType = increment;

0 commit comments

Comments
 (0)
Please sign in to comment.