|
1 | 1 | export default { |
2 | 2 | releaseCommitMessageFormat: 'chore(release): {{currentTag}} [ci-skip]', |
3 | 3 | types: [ |
4 | | - { |
5 | | - type: 'deps', |
6 | | - hidden: false, |
7 | | - section: 'Dependencies' |
8 | | - }, |
9 | | - { |
10 | | - type: 'feat', |
11 | | - hidden: false, |
12 | | - section: 'Features' |
13 | | - }, |
14 | | - { |
15 | | - type: 'fix', |
16 | | - hidden: false, |
17 | | - section: 'Bug Fixes' |
18 | | - }, |
19 | | - { |
20 | | - type: 'build', |
21 | | - hidden: false, |
22 | | - section: 'Build System' |
23 | | - }, |
24 | | - { |
25 | | - type: 'chore', |
26 | | - hidden: false, |
27 | | - section: 'Miscellaneous Chores' |
28 | | - }, |
29 | | - { |
30 | | - type: 'ci', |
31 | | - hidden: false, |
32 | | - section: 'Continuous Integration' |
33 | | - }, |
34 | | - { |
35 | | - type: 'docs', |
36 | | - hidden: false, |
37 | | - section: 'Documentation' |
38 | | - }, |
39 | | - { |
40 | | - type: 'style', |
41 | | - hidden: false, |
42 | | - section: 'Styles' |
43 | | - }, |
44 | | - { |
45 | | - type: 'refactor', |
46 | | - hidden: false, |
47 | | - section: 'Code Refactoring' |
48 | | - }, |
49 | | - { |
50 | | - type: 'perf', |
51 | | - hidden: false, |
52 | | - section: 'Performance Improvements' |
53 | | - }, |
54 | | - { |
55 | | - type: 'test', |
56 | | - hidden: false, |
57 | | - section: 'Tests' |
58 | | - }, |
59 | | - { |
60 | | - type: 'revert', |
61 | | - hidden: false, |
62 | | - section: 'Reverts' |
63 | | - } |
| 4 | + { type: 'feat', section: 'Features' }, |
| 5 | + { type: 'fix', section: 'Bug Fixes' }, |
| 6 | + { type: 'perf', section: 'Performance Improvements' }, |
| 7 | + { type: 'revert', section: 'Reverts' }, |
| 8 | + { type: 'chore', section: 'Miscellaneous Chores' }, |
| 9 | + { type: 'docs', section: 'Documentation' }, |
| 10 | + { type: 'style', section: 'Styles' }, |
| 11 | + { type: 'refactor', section: 'Code Refactoring' }, |
| 12 | + { type: 'test', section: 'Tests', hidden: true }, |
| 13 | + { type: 'build', section: 'Build System', hidden: true }, |
| 14 | + { type: 'ci', section: 'Continuous Integration', hidden: true } |
64 | 15 | ] |
65 | 16 | }; |
0 commit comments