Skip to content

Commit 5e0af0c

Browse files
authoredOct 29, 2024··
fix: Resolve whatBump is not a function error (#105)
* fix: Resolve pending preset promise * fix: Get recommended version bump * chore: Remove redundant if logic * refactor: Avoid code repetition * docs: Explain how to use the whatBump config option to skip releasing a new version * refactor: Make whatBump's value conventional
1 parent 04cc0aa commit 5e0af0c

File tree

3 files changed

+37
-6
lines changed

3 files changed

+37
-6
lines changed
 

‎README.md

+11
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,17 @@ for the configuration object to pass as `preset`.
109109
- This option will be passed as the first argument to
110110
[`bumper.bump`](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-recommended-bump/README.md#api)
111111
- [Type definition for `whatBump` → look for `Preset['whatBump']`](https://github.com/conventional-changelog/conventional-changelog/blob/master/packages/conventional-recommended-bump/src/types.ts)
112+
- Use the `false` Boolean value to skip releasing a new version.
113+
114+
```json
115+
{
116+
"plugins": {
117+
"@release-it/conventional-changelog": {
118+
"whatBump": false
119+
}
120+
}
121+
}
122+
```
112123

113124
### `ignoreRecommendedBump`
114125

‎index.js

+14-6
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,30 @@ class ConventionalChangelog extends Plugin {
3939
try {
4040
const bumper = new Bumper();
4141

42-
if (options.preset) bumper.loadPreset(options.preset);
42+
if (options.preset) await bumper.loadPreset(options.preset).preset;
4343

4444
if (options.tagOpts) bumper.tag(options.tagOpts);
4545

4646
if (options.commitsOpts) bumper.commits(options.commitsOpts, options.parserOpts);
4747

48-
const result = await bumper.bump(options.whatBump);
48+
async function getWhatBump() {
49+
if (options.whatBump === false) {
50+
return () => ({ releaseType: null });
51+
} else {
52+
const bumperPreset = await bumper.preset;
53+
54+
if (bumperPreset === null) return () => ({ releaseType: null });
55+
56+
return bumperPreset.whatBump || bumperPreset.recommendedBumpOpts.whatBump;
57+
}
58+
}
59+
60+
const result = await bumper.bump(await getWhatBump());
4961

5062
this.debug({ result });
5163

5264
let { releaseType } = result;
5365

54-
if (releaseType == undefined) {
55-
return;
56-
}
57-
5866
if (increment) {
5967
this.log.warn(`The recommended bump is "${releaseType}", but is overridden with "${increment}".`);
6068
releaseType = increment;

‎test.js

+12
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,18 @@ test('should not bump when recommended bump returns null', async () => {
370370
}
371371
});
372372

373+
test('should not bump when whatBump === false', async () => {
374+
setup();
375+
sh.exec(`git tag 1.0.0`);
376+
add('fix', 'bar');
377+
add('feat', 'baz');
378+
{
379+
const options = getOptions({ whatBump: false });
380+
const { version } = await runTasks(...options);
381+
assert.equal(version, undefined);
382+
}
383+
});
384+
373385
// TODO Prepare test and verify results influenced by parserOpts and writerOpts
374386
test.skip('should pass parserOpts and writerOpts', async t => {
375387
setup();

0 commit comments

Comments
 (0)
Please sign in to comment.