|
1 | 1 | {
|
2 | 2 | "plugins": [
|
3 | 3 | "@semantic-release/commit-analyzer",
|
4 |
| - "@semantic-release/release-notes-generator", |
| 4 | + [ |
| 5 | + "@semantic-release/release-notes-generator", |
| 6 | + { |
| 7 | + presetConfig: { |
| 8 | + types: [ |
| 9 | + { type: "feat", section: "✨ Features", hidden: false }, |
| 10 | + { type: "fix", section: "🐛 Bug Fixes", hidden: false }, |
| 11 | + { type: "perf", section: "🌈 Performance", hidden: false }, |
| 12 | + { type: "refactor", section: "♻️ Refactor", hidden: false }, |
| 13 | + { type: "docs", section: "📝 Docs", hidden: false }, |
| 14 | + { type: "style", section: "💄 Styles", hidden: false }, |
| 15 | + { type: "revert", section: "🕐 Reverts", hidden: false }, |
| 16 | + { type: "ci", section: "💫 CI/CD", hidden: false }, |
| 17 | + |
| 18 | + { type: "test", section: "✅ Tests", hidden: true }, |
| 19 | + { type: "chore", section: "📦 Chores", hidden: true }, |
| 20 | + { type: "move", section: "🚚 Move Files", hidden: true }, |
| 21 | + { type: "remove", section: "🔥 Remove Files", hidden: true }, |
| 22 | + ], |
| 23 | + }, |
| 24 | + }, |
| 25 | + ], |
5 | 26 | [
|
6 | 27 | "@semantic-release/changelog",
|
7 | 28 | {
|
|
0 commit comments