-
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy path.releaserc.json
More file actions
25 lines (25 loc) · 603 Bytes
/
.releaserc.json
File metadata and controls
25 lines (25 loc) · 603 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
{
"preset": "conventionalcommits",
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", {"changelogTitle": "# Changelog"}],
"semantic-release-major-tag",
[
"@semantic-release/github",
{
"failComment": false,
"failTitle": false,
"releasedLabels": false
}
],
[
"@semantic-release/git",
{
"assets": ["dist", "CHANGELOG.md"],
"message": "chore: Release ${nextRelease.version} [skip ci]"
}
]
]
}