|
| 1 | +{ |
| 2 | + "branches": ["master"], |
| 3 | + "tagFormat": "${version}", |
| 4 | + "plugins": [ |
| 5 | + "@semantic-release/commit-analyzer", |
| 6 | + "@semantic-release/release-notes-generator", |
| 7 | + [ |
| 8 | + "@semantic-release/github", |
| 9 | + { |
| 10 | + "assets": [] |
| 11 | + } |
| 12 | + ] |
| 13 | + ], |
| 14 | + "message": "chore(release): ${nextRelease.version}", |
| 15 | + "preset": "conventionalcommits", |
| 16 | + "presetConfig": { |
| 17 | + "types": [ |
| 18 | + { "type": "feat", "section": "Features" }, |
| 19 | + { "type": "fix", "section": "Bug Fixes" }, |
| 20 | + { "type": "perf", "section": "Performance Improvements" }, |
| 21 | + { "type": "revert", "section": "Reverts" }, |
| 22 | + { "type": "build", "section": "Build System" }, |
| 23 | + { "type": "initial", "section": "Initial" }, |
| 24 | + { "type": "dependencies", "section": "Dependencies" }, |
| 25 | + { "type": "docs", "section": "Documentation", "hidden": true }, |
| 26 | + { "type": "style", "section": "Styles" }, |
| 27 | + { "type": "chore", "section": "Miscellaneous Chores", "hidden": true }, |
| 28 | + { "type": "refactor", "section": "Code Refactoring", "hidden": true }, |
| 29 | + { "type": "test", "section": "Tests", "hidden": true }, |
| 30 | + { "type": "ci", "section": "Continuous Integration", "hidden": true }, |
| 31 | + { "type": "hotfix", "section": "Bug Fixes" } |
| 32 | + ] |
| 33 | + }, |
| 34 | + "releaseRules": [ |
| 35 | + { "breaking": true, "release": "major" }, |
| 36 | + { "type": "feat", "release": "minor" }, |
| 37 | + { "type": "fix", "release": "patch" }, |
| 38 | + { "type": "perf", "release": "patch" }, |
| 39 | + { "type": "build", "release": "patch" }, |
| 40 | + { "type": "docs", "scope": "readme", "release": "patch" }, |
| 41 | + { "type": "initial", "release": "minor" }, |
| 42 | + { "type": "dependencies", "release": "patch" }, |
| 43 | + { "type": "peerDependencies", "release": "patch" }, |
| 44 | + { "type": "metadata", "release": "patch" }, |
| 45 | + { "type": "hotfix", "release": "patch" } |
| 46 | + ] |
| 47 | +} |
0 commit comments