16 lines
495 B
JavaScript
16 lines
495 B
JavaScript
module.exports = {
|
|
preset: 'conventionalcommits',
|
|
presetConfig: {
|
|
types: [
|
|
{ type: 'feat', section: 'Features' },
|
|
{ type: 'fix', section: 'Bug Fixes' },
|
|
{ type: 'chore', section: 'Chores' },
|
|
{ type: 'docs', hidden: true },
|
|
{ type: 'style', hidden: true },
|
|
{ type: 'refactor', section: 'Refactoring' },
|
|
{ type: 'perf', hidden: true },
|
|
{ type: 'test', hidden: true },
|
|
],
|
|
},
|
|
releaseRules: [{ type: 'refactor', release: 'patch' }],
|
|
};
|