-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy path.release-it.json
More file actions
26 lines (26 loc) · 774 Bytes
/
.release-it.json
File metadata and controls
26 lines (26 loc) · 774 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
{
"git": {
"commitMessage": "chore: release v${version}",
"requireCommits": true
},
"github": { "release": true, "releaseName": "v${version}" },
"npm": { "skipChecks": true },
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": "conventionalcommits",
"types": [
{ "section": "Features", "type": "feat" },
{ "section": "Bug Fixes", "type": "fix" },
{ "section": "Performance Improvements", "type": "perf" },
{ "hidden": true, "type": "build" },
{ "hidden": true, "type": "chore" },
{ "hidden": true, "type": "ci" },
{ "hidden": true, "type": "docs" },
{ "hidden": true, "type": "refactor" },
{ "hidden": true, "type": "style" },
{ "hidden": true, "type": "test" }
]
}
}
}