update commit analyzer

Signed-off-by: Andrew Brandt <brandt.andrew89@gmail.com>
This commit is contained in:
Andrew Brandt 2026-01-19 09:51:45 -06:00
parent 48ffe43cc7
commit f1616c6e14
No known key found for this signature in database
GPG Key ID: F3852281D66848FB

View File

@ -3,7 +3,15 @@
[ [
"@semantic-release/commit-analyzer", "@semantic-release/commit-analyzer",
{ {
"preset": "conventionalcommits" "preset": "conventionalcommits",
"releaseRules": [
{ "breaking": true, "release": "minor" },
{ "type": "feat", "release": "minor" },
{ "type": "fix", "release": "patch" }
],
"parserOpts": {
"noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES", "BREAKING"]
}
} }
], ],
[ [
@ -28,11 +36,5 @@
} }
] ]
], ],
"releaseRules": [
{
"breaking": true,
"release": "minor"
}
],
"branches": ["feature/add-semantic-releases"] "branches": ["feature/add-semantic-releases"]
} }