-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.json
38 lines (38 loc) · 1.1 KB
/
.releaserc.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
{
"branches": [
"main"
],
"ci": true,
"debug": true,
"dryRun": false,
"preset": "angular",
"tagFormat": "v${version}",
"plugins": [
"@semantic-release/npm",
["@semantic-release/commit-analyzer", {
"releaseRules": [
{"type": "breaking", "release": "major"},
{"type": "build","release": "patch"},
{"type": "chore","release": false},
{"type": "ci","release": false},
{"type": "docs","release": false},
{"type": "feat","release": "minor"},
{"type": "fix","release": "patch"},
{"type": "perf","release": "patch"},
{"type": "refactor","release": false},
{"type": "revert","release": "patch"},
{"type": "style","release": false},
{"type": "test","release": false}
]}
],
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md"
}],
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md"],
"message": "Release: ${nextRelease.version} [skip ci]"
}],
"@semantic-release/github"
]
}