-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.release-please-config.json
More file actions
89 lines (89 loc) · 1.76 KB
/
.release-please-config.json
File metadata and controls
89 lines (89 loc) · 1.76 KB
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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "node",
"include-component-in-tag": true,
"skip-github-release": true,
"plugins": [
{
"type": "node-workspace",
"updatePeerDependencies": true
},
{
"type": "linked-versions",
"groupName": "plugin",
"components": ["core", "template"]
}
],
"changelog-sections": [
{
"type": "feat",
"section": "✨ 新功能",
"hidden": false
},
{
"type": "fix",
"section": "🐛 错误修复",
"hidden": false
},
{
"type": "perf",
"section": "⚡️ 性能优化",
"hidden": false
},
{
"type": "revert",
"section": "⏪️ 回退提交",
"hidden": false
},
{
"type": "docs",
"section": "📝 文档更新",
"hidden": false
},
{
"type": "style",
"section": "🎨 代码样式",
"hidden": false
},
{
"type": "chore",
"section": "🔧 其他更新",
"hidden": false
},
{
"type": "refactor",
"section": "♻️ 代码重构",
"hidden": false
},
{
"type": "test",
"section": "✅ 测试相关",
"hidden": false
},
{
"type": "deps",
"section": "📦 依赖更新"
},
{
"type": "build",
"section": "📦️ 构建系统",
"hidden": false
},
{
"type": "ci",
"section": "🎡 持续集成",
"hidden": false
}
],
"packages": {
"packages/core": {
"release-type": "node",
"component": "core"
},
"packages/template": {
"release-type": "node",
"component": "template"
}
},
"commit-search-depth": 50
}