|
1 | 1 | module.exports = { |
2 | 2 | types: [ |
3 | | - { type: 'feat', section: 'Features' }, |
4 | | - { type: 'fix', section: 'Bug Fixes' }, |
5 | | - { type: 'chore', section: 'Maintenance' }, |
6 | | - { type: 'docs', section: 'Documentation' }, |
7 | | - { type: 'style', section: 'Styling' }, |
8 | | - { type: 'refactor', section: 'Code Refactoring' }, |
9 | | - { type: 'perf', section: 'Performance' }, |
10 | | - { type: 'test', section: 'Testing' }, |
11 | | - { type: 'ci', section: 'CI/CD' }, |
12 | | - { type: 'build', section: 'Build System' } |
| 3 | + { type: 'feat', section: 'Features', hidden: false }, |
| 4 | + { type: 'fix', section: 'Bug Fixes', hidden: false }, |
| 5 | + { type: 'chore', section: 'Maintenance', hidden: false }, |
| 6 | + { type: 'docs', section: 'Documentation', hidden: false }, |
| 7 | + { type: 'style', section: 'Styling', hidden: false }, |
| 8 | + { type: 'refactor', section: 'Code Refactoring', hidden: false }, |
| 9 | + { type: 'perf', section: 'Performance', hidden: false }, |
| 10 | + { type: 'test', section: 'Testing', hidden: false }, |
| 11 | + { type: 'ci', section: 'CI/CD', hidden: false }, |
| 12 | + { type: 'build', section: 'Build System', hidden: false } |
| 13 | + ], |
| 14 | + releaseRules: [ |
| 15 | + { type: 'feat', release: 'minor' }, |
| 16 | + { type: 'fix', release: 'patch' }, |
| 17 | + { type: 'perf', release: 'patch' }, |
| 18 | + { type: 'chore', release: 'patch' }, |
| 19 | + { type: 'docs', release: 'patch' }, |
| 20 | + { type: 'style', release: 'patch' }, |
| 21 | + { type: 'refactor', release: 'patch' }, |
| 22 | + { type: 'test', release: 'patch' }, |
| 23 | + { type: 'ci', release: 'patch' }, |
| 24 | + { type: 'build', release: 'patch' } |
13 | 25 | ] |
14 | 26 | }; |
0 commit comments