Skip to content

Commit

Permalink
chore: test for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Karsei committed Sep 17, 2023
1 parent 69dd943 commit 23cce02
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,6 +1,36 @@
{
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{"scope": "no-release", "release": false},
{"scope": "breaking", "release": "major"},

{"type": "docs", "scope": "README", "release": "patch"},

{"type": "feat", "release": "minor"},
{"type": "fix", "release": "patch"},

{"type": "refactor", "scope": "core-*", "release": "minor"},
{"type": "refactor", "release": "patch"},

{"type": "style", "release": "patch"},
{"type": "perf", "release": "patch"},
{"type": "revert", "release": "patch"},

{"type": "move", "release": false},
{"type": "remove", "release": false},
{"type": "chore", "release": false},
{"type": "ci", "release": false},
{"type": "test", "release": false},
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
}
}
],
[
"@semantic-release/release-notes-generator",
{
Expand Down Expand Up @@ -37,7 +67,6 @@
"npmPublish": false
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
Expand Down

0 comments on commit 23cce02

Please sign in to comment.