Skip to content

Commit

Permalink
chore(project): add releaserc file for conventional commit
Browse files Browse the repository at this point in the history
  • Loading branch information
timoa committed Mar 28, 2022
1 parent f190000 commit 98326df
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"branches": [
"master",
"develop"
],
"tagFormat": "v${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"type": "style",
"release": "patch"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm"
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"README.md",
"package.json",
"package-lock.json"
]
}
],
[
"@semantic-release/github", {
"assignees": "timoa"
}
]
]
}

0 comments on commit 98326df

Please sign in to comment.