Skip to content

Commit

Permalink
fix: Add missing semantic release config (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatiPl01 authored Jul 20, 2024
1 parent 96962d8 commit 645b838
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "release: ${nextRelease.version} \n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"preset": "angular"
}

0 comments on commit 645b838

Please sign in to comment.