Skip to content

Commit

Permalink
build(release): update semantic release config
Browse files Browse the repository at this point in the history
  • Loading branch information
cshawaus committed Dec 29, 2023
1 parent acf3449 commit c91e502
Showing 1 changed file with 46 additions and 1 deletion.
47 changes: 46 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,52 @@
}
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "refactor",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "docs",
"scope": "readme",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
},
{
"type": "refactor",
"scope": "core",
"release": "minor"
},
{
"revert": true,
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
Expand Down

0 comments on commit c91e502

Please sign in to comment.