-
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy path.release-it.json
More file actions
24 lines (24 loc) · 637 Bytes
/
.release-it.json
File metadata and controls
24 lines (24 loc) · 637 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
{
"git": {
"commitMessage": "chore(release): v${version}",
"tagName": "v${version}",
"requireCleanWorkingDir": true,
"push": true,
"requireUpstream": false
},
"npm": {
"publish": true,
"verifyAccess": true,
"tokenRef": "NPM_TOKEN"
},
"github": {
"release": true,
"releaseName": "v${version}",
"tokenRef": "GITHUB_TOKEN"
},
"hooks": {
"before:init": ["npm run typecheck", "npm run build", "npm run codegen"],
"after:bump": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"after:release": "git push --follow-tags"
}
}