generated from rondymesquita/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.release-it.json
46 lines (46 loc) · 1.18 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
40
41
42
43
44
45
46
{
"hooks": {},
"plugins": {
"@release-it/conventional-changelog": {
"writerOpts": {
"groupBy": "type"
},
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "build", "section": "Build Changes" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "section": "Chores" },
{ "type": "ci", "section": "CI Configuration" },
{ "type": "docs", "section": "Docs" },
{ "type": "style", "section": "Code Style" },
{ "type": "refactor", "section": "Refactors" },
{ "type": "perf", "section": "Performance" },
{ "type": "test", "section": "Tests" },
{ "type": "release", "section": "Releases" }
]
}
}
},
"git": {
"requireCleanWorkingDir": true,
"requireBranch": false,
"requireUpstream": false,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"tag": true,
"push": true
},
"npm": {
"publish": false
},
"github": {
"release": true,
"tokenRef": "GH_TOKEN"
},
"gitlab": {
"release": false
}
}