Skip to content

Commit

Permalink
chore: added .release-it.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliaghisini authored Mar 4, 2024
1 parent e0f5ba5 commit 7e8a3a0
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"git": {
"tagName": "v${version}",
"commitMessage": "chore: release v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseName": "${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Changes"
},
{
"type": "chore",
"section": "Maintenance"
}
]
}
}
}
}

0 comments on commit 7e8a3a0

Please sign in to comment.