fix: make release-it compliant with conventionnal commits
[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 "pushRepo": "origin"
7 },
8 "npm": {
9 "publish": false
10 },
11 "github": {
12 "release": true,
13 "releaseName": "Version ${version}"
14 },
15 "plugins": {
16 "@release-it/bumper": {
17 "out": ["sonar-project.properties"]
18 }
19 },
20 "hooks": {
21 "after:bump": "npx auto-changelog --commit-limit false --package --template https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs"
22 }
23 }