-
Notifications
You must be signed in to change notification settings - Fork 13
/
release-please-config.json
47 lines (47 loc) · 1.39 KB
/
release-please-config.json
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
{
"bootstrap-sha": "3f92f16fb02166239bc33b0f9b4ca5727b3be52b",
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "node",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"bootstrap-sha": "3f92f16fb02166239bc33b0f9b4ca5727b3be52b",
"include-v-in-tag": true,
"include-component-in-tag": false,
"extra-files": [
{
"type": "json",
"path": "server/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "web/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "types/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "shared/package.json",
"jsonpath": "$.version"
}
],
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "feature", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance Improvements" },
{ "type": "revert", "section": "Reverts" },
{ "type": "style", "section": "UI Changes" }
]
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}