-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.config.mjs
70 lines (70 loc) · 2.16 KB
/
changelog.config.mjs
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
module.exports = {
disableEmoji: false,
format: '{type}{scope}: {emoji}{subject}',
list: ['test', 'feat', 'fix', 'chore', 'docs', 'refactor', 'style', 'ci', 'perf'],
maxMessageLength: 64,
minMessageLength: 3,
questions: ['type', 'scope', 'subject', 'body', 'breaking', 'issues', 'lerna'],
scopes: [],
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',
},
perf: {
description: 'パフォーマンス改善',
emoji: '⚡️',
value: 'perf',
},
refactor: {
description: 'リファクタリング',
emoji: '💡',
value: 'refactor',
},
release: {
description: 'リリースコミット',
emoji: '🏹',
value: 'release',
},
style: {
description: 'フォーマッティングなどのコードのスタイル調整',
emoji: '💄',
value: 'style',
},
test: {
description: 'テストコードの変更',
emoji: '💍',
value: 'test',
},
},
messages: {
type: 'コミットする変更の種類を選択してください:',
scopes: 'このコンポーネントが影響するスコープを選択してください:\n',
subject: '変更について、命令口調で短い説明を書いてください:\n',
body: '変更点に関するより長い説明を記述してください:\n',
breaking: '変更点があればリストアップする:',
issues: 'このコミットがクローズする issue(例:#123):',
confirmCommit: 'このコミットが影響を与えたパッケージ\n',
},
};