72 lines
1.9 KiB
JSON
72 lines
1.9 KiB
JSON
{
|
|
"branches": ["main"],
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"releaseRules": [
|
|
{ "type": "feat", "scope": "!abacus-react", "release": "minor" },
|
|
{ "type": "fix", "scope": "!abacus-react", "release": "patch" },
|
|
{ "type": "perf", "scope": "!abacus-react", "release": "patch" },
|
|
{ "type": "refactor", "scope": "!abacus-react", "release": "patch" },
|
|
{ "breaking": true, "scope": "!abacus-react", "release": "major" },
|
|
{ "scope": "abacus-react", "release": false }
|
|
]
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits",
|
|
"presetConfig": {
|
|
"types": [
|
|
{ "type": "feat", "section": "Features" },
|
|
{ "type": "fix", "section": "Bug Fixes" },
|
|
{ "type": "perf", "section": "Performance Improvements" },
|
|
{ "type": "refactor", "section": "Code Refactoring" },
|
|
{ "type": "docs", "section": "Documentation" },
|
|
{ "type": "style", "section": "Styles" },
|
|
{ "type": "test", "section": "Tests" }
|
|
]
|
|
}
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/changelog",
|
|
{
|
|
"changelogFile": "CHANGELOG.md"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/npm",
|
|
{
|
|
"npmPublish": false
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/github",
|
|
{
|
|
"assets": [
|
|
{
|
|
"path": "CHANGELOG.md",
|
|
"label": "Changelog"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
"assets": [
|
|
"CHANGELOG.md",
|
|
"package.json",
|
|
"package-lock.json",
|
|
"pnpm-lock.yaml"
|
|
],
|
|
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
|
|
}
|
|
]
|
|
]
|
|
}
|