Skip to content

Commit

Permalink
feat: adding release configuration for release-it
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlosjr97 committed Feb 10, 2024
1 parent a387ee1 commit 4d4ce31
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"plugins": {
"@release-it/conventional-changelog": {
"gitRawCommitsOpts": {
"path": "."
},
"header": "# Changelog\n\nThis changelog is updated automatically using release-it.\n",
"infile": "CHANGELOG.md",
"path": ".",
"preset": {
"name": "conventionalcommits",
"types": [
{
"section": "Bug Fixes",
"type": "fix"
},
{
"section": "Build Changes",
"type": "build"
},
{
"section": "Chores",
"type": "chore"
},
{
"section": "Code Refactoring",
"type": "refactor"
},
{
"section": "Code Style Changes",
"type": "style"
},
{
"section": "Continuous Integration",
"type": "ci"
},
{
"section": "Documentation",
"type": "docs"
},
{
"section": "Features",
"type": "feat"
},
{
"section": "Performance Improvements",
"type": "perf"
},
{
"section": "Reverts",
"type": "revert"
},
{
"section": "Tests",
"type": "test"
}
]
}
}
},
"git": {
"commitMessage": "Released version ${version}",
"commitsPath": ".",
"push": true,
"requireCommits": true,
"requireCommitsFail": false,
"tagExclude": "*[@]*",
"tagName": "${version}"
},
"github": {
"release": true,
"releaseName": "${version}"
}
}

0 comments on commit 4d4ce31

Please sign in to comment.