forked from commitizen/cz-conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaultTypes.js
More file actions
108 lines (107 loc) · 2.45 KB
/
Copy pathdefaultTypes.js
File metadata and controls
108 lines (107 loc) · 2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
module.exports = {
feat: {
value: 'feat',
description: 'A new feature',
title: 'Feature',
emoji: '✨',
},
fix: {
value: 'fix',
description: 'A bug fix',
title: 'Bug Fix',
emoji: '🐛',
},
docs: {
value: 'docs',
description: 'Documentation only changes',
title: 'Documentation',
emoji: '📚',
},
style: {
value: 'style',
description:
'Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)',
title: 'Code Style',
emoji: '💎',
},
refactor: {
value: 'refactor',
description: 'A code change that neither fixes a bug nor adds a feature',
title: 'Code Refactoring',
emoji: '📦',
},
perf: {
value: 'perf',
description: 'A code change that improves performance',
title: 'Performance Improvement',
emoji: '🚀',
},
test: {
value: 'test',
description: 'Adding missing tests or correcting existing tests',
title: 'Tests',
emoji: '🚨',
},
build: {
value: 'build',
description:
'Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)',
title: 'Build',
emoji: '🛠',
},
ci: {
value: 'ci',
description:
'Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)',
title: 'Continuous Integration',
emoji: '⚙️',
},
chore: {
value: 'chore',
description: "Other changes that don't modify src or test files",
title: 'Chore',
emoji: '♻️',
},
revert: {
value: 'revert',
description: 'Reverts a previous commit',
title: 'Revert',
emoji: '🗑',
},
wip: {
value: 'wip',
description: 'An incomplete work-in-progress',
title: 'WIP',
emoji: '🚧',
},
initial: {
value: 'feat',
description: 'Initial commit',
title: 'Initial',
emoji: '🎉',
},
dependencies: {
value: 'fix',
description: 'Update dependencies',
title: 'Dependencies',
emoji: '⏫',
},
peerDependencies: {
value: 'fix',
description: 'Update peer dependencies',
title: 'Peer dependencies',
emoji: '⬆️',
},
devDependencies: {
value: 'chore',
description: 'Update development dependencies',
title: 'Dev dependencies',
emoji: '🔼',
},
metadata: {
value: 'chore',
description: 'Update metadata (package.json)',
title: 'Metadata',
emoji: '📦',
},
};