-
Notifications
You must be signed in to change notification settings - Fork 3
/
.cz-config.js
70 lines (68 loc) · 1.54 KB
/
.cz-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
/// https://github.com/leoforfree/cz-customizable/blob/master/cz-config-EXAMPLE.js
module.exports = {
types: [
{
value: ":sparkles: feat",
name: "✨ feat: 一个新功能"
},
{
value: ":bug: fix",
name: "🐛 fix: 修复一个bug"
},
{
value: ":memo: docs",
name: "📝 docs: 更新文档"
},
{
value: ":white_check_mark: test",
name: "✅ test: 添加一些测试demo"
},
{
value: ":art: improve",
name: "🎨 improve: 改善一些特性"
},
{
value: ":construction: wip",
name: "💪 wip: 正在进行的工作"
},
{
value: ":hammer: refactor",
name: "🔨 refactor: 重构代码"
},
{
value: ":pencil: chore",
name: "🗯 chore: 一些不太重要的更改"
},
{
value: ":lipstick: update",
name: "💄 update: 更新样式或者UI"
},
{
value: ":package: migrate",
name: "📦 migrate: 更新一些包的版本"
},
{
value: ":green_heart: ci",
name: "💚 fix(ci): 修复持续构建"
},
{
value: ":truck: move",
name: "🚚 move: 调整文件或者目录"
},
{
value: ":fire: prune",
name: "🔥 remove: 删除一些屎一样的代码"
},
{
value: ":bookmark: release",
name: "🔖 release: 发布一个里程碑"
},
{
value: ":rocket: build",
name: "🚀 build: 稳定版"
}
],
scopes: [],
allowCustomScopes: true,
allowBreakingChanges: ["feat", "fix"]
}