Skip to content

Commit 033a52b

Browse files
committed
feat: add automated release script
1 parent 71197c9 commit 033a52b

File tree

3 files changed

+1870
-67
lines changed

3 files changed

+1870
-67
lines changed

.release-it.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"increment": "conventional:angular",
3+
"script": {
4+
"changelog": "npm run changelog",
5+
"beforeStage": "npm run changelog.write",
6+
"afterRelease": "npm run deploy"
7+
},
8+
"git": {
9+
"commitMessage": "chore(release): ${version}",
10+
"tagName": "${version}",
11+
"tagAnnotation": "Release ${version}",
12+
"push": true,
13+
"commit": true
14+
},
15+
"github": {
16+
"release": true,
17+
"releaseName": "ngx.tools ${version}",
18+
"draft": false,
19+
"tokenRef": "GITHUB_TOKEN"
20+
},
21+
"npm": {
22+
"publish": false
23+
}
24+
}

0 commit comments

Comments
 (0)