-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.config.js
84 lines (83 loc) · 1.72 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
// 設定の引用元
// https://zenn.dev/kalubi/articles/45c3b6ebedc2c4
module.exports = {
disableEmoji: false,
format: '{type}{scope}: {emoji}{subject}',
list: [
'chore',
'ci',
'config',
'docs',
'feat',
'fix',
'package',
'perf',
'refactor',
'style',
'test',
],
maxMessageLength: 64,
minMessageLength: 3,
questions: ['type', 'subject'],
types: {
chore: {
description: 'ビルド関連や補助ツールの変更',
emoji: '🤖',
value: 'chore',
},
ci: {
description: 'CI関連の変更',
emoji: '🎡',
value: 'ci',
},
config: {
description: '設定ファイル',
emoji: '⚙',
value: 'config',
},
docs: {
description: 'ドキュメントの更新',
emoji: '✏',
value: 'docs',
},
feat: {
description: '機能の追加、変更、削除)',
emoji: '✨',
value: 'feat',
},
fix: {
description: 'バグ修正',
emoji: '🐞',
value: 'fix',
},
package: {
description: '依存関係',
emoji: '📦',
value: 'package',
},
perf: {
description: 'パフォーマンス改善',
emoji: '⚡️',
value: 'perf',
},
refactor: {
description: 'リファクタリング',
emoji: '🔨',
value: 'refactor',
},
style: {
description: 'スタイル調整',
emoji: '👙',
value: 'style',
},
test: {
description: 'テストコードの変更',
emoji: '🧪',
value: 'test',
},
},
messages: {
type: 'コミットする内容はどの型ですか:',
subject: '変更内容を簡潔に書いてください:\n',
},
};