conventional-changelog-conventionalcommits
Version:
Conventionalcommits.org preset for conventional-changelog.
58 lines (57 loc) • 874 B
JavaScript
export const DEFAULT_COMMIT_TYPES = Object.freeze([
{
type: 'feat',
section: 'Features'
},
{
type: 'feature',
section: 'Features'
},
{
type: 'fix',
section: 'Bug Fixes'
},
{
type: 'perf',
section: 'Performance Improvements'
},
{
type: 'revert',
section: 'Reverts'
},
{
type: 'docs',
section: 'Documentation',
hidden: true
},
{
type: 'style',
section: 'Styles',
hidden: true
},
{
type: 'chore',
section: 'Miscellaneous Chores',
hidden: true
},
{
type: 'refactor',
section: 'Code Refactoring',
hidden: true
},
{
type: 'test',
section: 'Tests',
hidden: true
},
{
type: 'build',
section: 'Build System',
hidden: true
},
{
type: 'ci',
section: 'Continuous Integration',
hidden: true
}
].map(Object.freeze))