-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.releaserc.json
More file actions
36 lines (35 loc) · 931 Bytes
/
.releaserc.json
File metadata and controls
36 lines (35 loc) · 931 Bytes
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
{
"branches": ["main","next"],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventional",
"releaseRules": [
{ "type": "feat", "release": "minor" },
{ "type": "fix", "release": "patch" },
{ "type": "docs", "release": "patch" },
{ "type": "style", "release": "patch" },
{ "type": "refactor", "release": "patch" },
{ "type": "perf", "release": "patch" },
{ "type": "test", "release": "patch" },
{ "type": "chore", "release": false }
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventional"
}
],
[
"@semantic-release/github",
{
"assets": [
{"path": "dist/*.tgz", "label": "Distribution"}
]
}
]
]
}