-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.releaserc.json
More file actions
39 lines (39 loc) Β· 1.27 KB
/
.releaserc.json
File metadata and controls
39 lines (39 loc) Β· 1.27 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
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"writerOpts": {
"types": [
{ "type": "feat", "section": "π Features", "hidden": false },
{ "type": "chore", "section": "π§ Maintenance", "hidden": true },
{ "type": "ci", "section": "π· CI", "hidden": true },
{ "type": "fix", "section": "π Bug Fixes", "hidden": false },
{ "type": "perf", "section": "β‘ Performance", "hidden": false },
{
"type": "refactor",
"section": "β»οΈ Refactoring",
"hidden": false
},
{ "type": "docs", "section": "π Documentation", "hidden": false },
{ "type": "test", "section": "β
Tests", "hidden": true },
{ "type": "style", "section": "π¨ Styles", "hidden": true }
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md", "package.json", "package-lock.json"],
"message": "chore(release): ${nextRelease.version}"
}
]
]
}