-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.config.js
100 lines (100 loc) · 2.06 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
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
module.exports = {
disableEmoji: false,
format: "{type}{scope}: {emoji}{subject}",
list: [
"feat",
"test",
"fix",
"chore",
"docs",
"refactor",
"style",
"ci",
"perf",
"package",
"config",
"WIP",
],
maxMessageLength: 64,
minMessageLength: 3,
questions: [
"type",
"scope",
"subject",
"body",
"breaking",
"issues",
"lerna",
],
scopes: [],
types: {
feat: {
description: "新機能",
emoji: "🎸",
value: "feat",
},
chore: {
description: "ビルド関連やライブラリの変更",
emoji: "🤖",
value: "chore",
},
ci: {
description: "CI関連の変更",
emoji: "🎡",
value: "ci",
},
docs: {
description: "ドキュメントの更新",
emoji: "✏️",
value: "docs",
},
fix: {
description: "不具合の修正",
emoji: "🐛",
value: "fix",
},
perf: {
description: "パフォーマンス改善",
emoji: "⚡️",
value: "perf",
},
refactor: {
description: "リファクタリング",
emoji: "💡",
value: "refactor",
},
style: {
description: "コードの処理に影響しない変更(スペースや書式設定など)",
emoji: "💄",
value: "style",
},
test: {
description: "テストコード",
emoji: "💍",
value: "test",
},
//自分用に追加
package: {
description: "パッケージ",
emoji: "📦",
value: "package",
},
config: {
description: "設定ファイル",
emoji: "⚙",
value: "config",
},
WIP: {
description: "作業途中",
emoji: "🚧",
value: "WIP",
},
},
messages: {
type: "プレフィックスを選択:",
subject: "コミットのタイトル(概要)を入力(option):\n",
body: "変更内容の詳細を入力(option):\n",
breaking: "重大な変更を入力(option):\n",
issues: "関連するisuueを入力(option), 例 #123:",
},
};