|
| 1 | +{ |
| 2 | + "branches": ["main"], |
| 3 | + "plugins": [ |
| 4 | + "@semantic-release/commit-analyzer", |
| 5 | + [ |
| 6 | + "@semantic-release/release-notes-generator", |
| 7 | + { |
| 8 | + "preset": "conventionalcommits", |
| 9 | + "presetConfig": { |
| 10 | + "types": [ |
| 11 | + { "type": "feat", "section": "Features" }, |
| 12 | + { "type": "feature", "section": "Features" }, |
| 13 | + { "type": "docs", "section": "Documentation" }, |
| 14 | + { "type": "fix", "section": "Bug Fixes" }, |
| 15 | + { "type": "perf", "section": "Performance Improvements" }, |
| 16 | + { "type": "refactor", "section": "Code Improvements" }, |
| 17 | + { "type": "revert", "section": "Reverts" }, |
| 18 | + { "type": "test", "section": "Test Improvements" }, |
| 19 | + { "type": "chore", "scope": "deps", "section": "Dependency Updates" } |
| 20 | + ] |
| 21 | + } |
| 22 | + } |
| 23 | + ], |
| 24 | + "@semantic-release/npm", |
| 25 | + [ |
| 26 | + "@semantic-release/git", |
| 27 | + { |
| 28 | + "assets": ["package.json"], |
| 29 | + "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" |
| 30 | + } |
| 31 | + ], |
| 32 | + "@semantic-release/github" |
| 33 | + ] |
| 34 | +} |
0 commit comments