-
Notifications
You must be signed in to change notification settings - Fork 133
/
.release-it.json
39 lines (39 loc) · 1.26 KB
/
.release-it.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
39
{
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": true,
"requireUpstream": false
},
"hooks": {
"before:init": ["npm run lint"],
"after:bump": "npx auto-changelog -p"
},
"npm": {
"skipChecks": true,
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true,
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "section": "Chore", "hidden": false },
{ "type": "docs", "section": "Docs", "hidden": false },
{ "type": "style", "section": "Style", "hidden": false },
{ "type": "refactor", "section": "Refactor", "hidden": false },
{ "type": "perf", "section": "Perf", "hidden": false },
{ "type": "test", "section": "Test", "hidden": false }
]
}
}
}
}