Skip to content

Commit 0a48510

Browse files
committed
Configure CLI tool to automate versioning and package publishing
1 parent 03b6d2f commit 0a48510

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.release-it.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"git": {
3+
"requireBranch": "main",
4+
"commitMessage": "Release v${version}",
5+
"tagName": "v${version}"
6+
},
7+
"github": {
8+
"release": true,
9+
"releaseName": "v${version}"
10+
},
11+
"hooks": {
12+
"before:init": [
13+
"npm run compile",
14+
"npm run lint",
15+
"npm run copy:paste:detection",
16+
"npm run test:unit:coverage",
17+
"npm run test:integration"
18+
]
19+
}
20+
}

0 commit comments

Comments
 (0)