Skip to content

Commit 781c9bd

Browse files
committed
chore: add back missing release-it config
1 parent f1880f1 commit 781c9bd

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.release-it.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"git": {
3+
"commitMessage": "chore: release v${version}",
4+
"tagName": "v${version}"
5+
},
6+
"github": {
7+
"release": true,
8+
"releaseName": "v${version}"
9+
},
10+
"npm": {
11+
"publish": true
12+
},
13+
"hooks": {
14+
"after:bump": "npm run build",
15+
"after:git:release": "echo After git push, before GitHub Release",
16+
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
17+
},
18+
"plugins": {
19+
"@release-it/conventional-changelog": {
20+
"header": "# Change Log \n\nAll notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.",
21+
"preset": "conventionalcommits",
22+
"infile": "CHANGELOG.md"
23+
}
24+
}
25+
}

0 commit comments

Comments
 (0)