-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.release-it.json
41 lines (41 loc) · 985 Bytes
/
.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
{
"ci": false,
"dry-run": false,
"verbose": false,
"force": false,
"hooks": {
"before:init": ["npm run check:starter:stark-versions"],
"after:bump": ["npm run check:nightly:stark-versions -- ${version}", "npm run generate:changelog"]
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
},
"git": {
"changelog": "npm run generate:changelog-recent",
"requireCleanWorkingDir": true,
"requireUpstream": true,
"requireCommits": false,
"commit": true,
"commitMessage": "chore(release): release ${version}",
"commitArgs": "",
"tag": true,
"tagName": "${version}",
"tagAnnotation": "${version}",
"push": true,
"pushArgs": ["--follow-tags"],
"pushRepo": "origin"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "Release ${version}",
"draft": false,
"tokenRef": "GITHUB_TOKEN",
"assets": null,
"host": null
}
}