-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
45 lines (45 loc) · 1.42 KB
/
release-please-config.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "node",
"packages": {
".": {
"component": "claude-prompts",
"package-name": "claude-prompts",
"changelog-path": "CHANGELOG.md",
"include-component-in-tag": false,
"include-v-in-tag": true,
"changelog-sections": [
{ "type": "feat", "section": "Added" },
{ "type": "fix", "section": "Fixed" },
{ "type": "perf", "section": "Improved" },
{ "type": "refactor", "section": "Changed" },
{ "type": "revert", "section": "Changed" },
{ "type": "docs", "section": "Documentation" },
{ "type": "chore", "section": "Maintenance", "hidden": true },
{ "type": "ci", "section": "Maintenance", "hidden": true },
{ "type": "test", "section": "Maintenance", "hidden": true },
{ "type": "build", "section": "Maintenance", "hidden": true },
{ "type": "style", "section": "Maintenance", "hidden": true }
]
}
},
"extra-files": [
{
"type": "json",
"path": "server/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "manifest.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
}
],
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true
}