build: refine release-it configuration
[e-mobility-charging-stations-simulator.git] / .release-it.json
1 {
2 "git": {
3 "changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
4 "commitMessage": "chore: version ${version}",
5 "tagAnnotation": "Version ${version}",
6 "tagExclude": "*[-]*",
7 "pushRepo": "origin"
8 },
9 "npm": {
10 "publish": false
11 },
12 "github": {
13 "release": true,
14 "releaseName": "Version ${version}"
15 },
16 "plugins": {
17 "@release-it/bumper": {
18 "out": ["sonar-project.properties"]
19 }
20 },
21 "hooks": {
22 "after:bump": "npx auto-changelog --commit-limit false --package --template https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs"
23 }
24 }