|
1 | 1 | export default {
|
2 | 2 | debug: true,
|
3 | 3 | plugins: [
|
4 |
| - "@semantic-release/commit-analyzer", |
5 |
| - "@semantic-release/release-notes-generator", |
| 4 | + [ |
| 5 | + "@semantic-release/commit-analyzer", |
| 6 | + { |
| 7 | + preset: "angular", |
| 8 | + releaseRules: [{ type: "deps", scope: "core", release: "patch" }], |
| 9 | + }, |
| 10 | + ], |
| 11 | + [ |
| 12 | + "@semantic-release/release-notes-generator", |
| 13 | + { |
| 14 | + preset: "conventionalcommits", |
| 15 | + presetConfig: { |
| 16 | + types: [ |
| 17 | + { type: "feat", section: "Features" }, |
| 18 | + { type: "fix", section: "Bug Fixes" }, |
| 19 | + { type: "perf", section: "Performance Improvements" }, |
| 20 | + { type: "deps", section: "Dependencies" }, |
| 21 | + { type: "revert", section: "Reverts" }, |
| 22 | + { type: "docs", section: "Documentation" }, |
| 23 | + { type: "style", section: "Styles", hidden: true }, |
| 24 | + { type: "chore", section: "Miscellaneous Chores", hidden: true }, |
| 25 | + { type: "refactor", section: "Code Refactoring", hidden: true }, |
| 26 | + { type: "test", section: "Tests", hidden: true }, |
| 27 | + { type: "build", section: "Build System", hidden: true }, |
| 28 | + { type: "ci", section: "Continuous Integration", hidden: true }, |
| 29 | + ], |
| 30 | + }, |
| 31 | + }, |
| 32 | + ], |
6 | 33 | [
|
7 | 34 | "semantic-release-net",
|
8 | 35 | {
|
|
0 commit comments