-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.config.js
74 lines (74 loc) · 1.61 KB
/
changelog.config.js
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
module.exports = {
"disableEmoji": false,
"list": [
"feat",
"docs",
"fix",
"chore",
"test",
"build",
"refactor",
"style",
"ci"
],
"maxMessageLength": 64,
"minMessageLength": 3,
"questions": [
"type",
"subject",
"body",
"issues"
],
"types": {
"chore": {
"description": "자잘한 작업",
"emoji": "🤖",
"value": "chore"
},
"ci": {
"description": "CI관련 설정",
"emoji": "🎡",
"value": "ci"
},
"docs": {
"description": "문서 수정",
"emoji": "✏️",
"value": "docs"
},
"feat": {
"description": "새로운 기능 추가",
"emoji": "🍎",
"value": "feat"
},
"fix": {
"description": "버그 수정",
"emoji": "🐛",
"value": "fix"
},
"refactor": {
"description": "성능 개선, 리팩토링",
"emoji": "🍱",
"value": "refactor"
},
"release": {
"description": "Create a release commit",
"emoji": "🏹",
"value": "release"
},
"style": {
"description": "코드 의미에 영향을 주지 않는 변경사항 (포맷, 세미콜론 누락, 공백 등)",
"emoji": "💄",
"value": "style"
},
"test": {
"description": "테스트 코드",
"emoji": "🧃",
"value": "test"
},
"build": {
"description": "시스템 또는 외부 종속성에 영향을 미치는 변경사항 (npm, gulp, yarn 레벨)",
"emoji": "🌴",
"value": "build"
}
}
};