-
Notifications
You must be signed in to change notification settings - Fork 172
/
release-please-config.json
57 lines (57 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
{
"release-type": "node",
"packages": {
".": {
"package-name": ""
}
},
"last-release-sha": "cda1eaf134c2e3298eb813bffb8faf6f748edafd",
"commit-search-depth": 40,
"extra-files": [
{
"type": "json",
"path": "app/electron/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "app/tauri/tauri.conf.json",
"jsonpath": "$.package.version"
},
{
"type": "json",
"path": "app/renderer/package.json",
"jsonpath": "$.version"
}
],
"changelog-sections": [
{ "type": "feat", "section": "Features ✨" },
{ "type": "feature", "section": "Features ✨" },
{ "type": "fix", "section": "Bug Fixes \uD83D\uDC1B" },
{ "type": "perf", "section": "Performance Improvements ⚡️" },
{
"type": "tweak",
"section": "Changes to Existing Features \uD83D\uDD27"
},
{ "type": "revert", "section": "Reverts ⏪️" },
{ "type": "docs", "section": "Documentation", "hidden": true },
{ "type": "style", "section": "Styles", "hidden": true },
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{ "type": "test", "section": "Tests", "hidden": true },
{ "type": "build", "section": "Build System", "hidden": true },
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
]
}