UNPKG

1.25 kBJavaScriptView Raw
1module.exports = {
2 types: [
3 {value: 'feat', name: 'feat: A new feature'},
4 {value: 'fix', name: 'fix: A bug fix'},
5 {value: 'docs', name: 'docs: Documentation only changes'},
6 {value: 'style', name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)'},
7 {value: 'refactor', name: 'refactor: A code change that neither fixes a bug nor adds a feature'},
8 {value: 'perf', name: 'perf: A code change that improves performance'},
9 {value: 'test', name: 'test: Adding missing tests'},
10 {value: 'chore', name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation'},
11 {value: 'revert', name: 'revert: Revert to a commit'},
12 {value: 'WIP', name: 'WIP: Work in progress'},
13 ],
14 scopes: [
15 { name: 'maker' },
16 { name: 'packager' },
17 { name: 'linter' },
18 { name: 'starter' },
19 { name: 'importer' },
20 { name: 'tests' },
21 { name: 'initializer' },
22 { name: 'publisher' },
23 { name: 'installer' },
24 { name: 'generic' },
25 ],
26 allowCustomScopes: true,
27 allowBreakingChanges: ['feat', 'fix'],
28}