|
| 1 | +--- |
| 2 | +plugins: |
| 3 | + - - '@semantic-release/commit-analyzer' |
| 4 | + - preset: angular |
| 5 | + releaseRules: |
| 6 | + - { type: docs, release: patch } |
| 7 | + - { type: refactor, release: patch } |
| 8 | + - { type: style, release: patch } |
| 9 | + parserOpts: |
| 10 | + noteKeywords: [BREAKING CHANGE, BREAKING CHANGES] |
| 11 | + |
| 12 | + - - '@semantic-release/release-notes-generator' |
| 13 | + - preset: conventionalcommits |
| 14 | + presetConfig: |
| 15 | + types: |
| 16 | + - { type: feat, section: Features, hidden: false } |
| 17 | + - { type: fix, section: Bug Fixes, hidden: false } |
| 18 | + - { type: perf, section: Performance, hidden: false } |
| 19 | + - { type: refactor, section: Refactor, hidden: false } |
| 20 | + - { type: test, section: Tests, hidden: false } |
| 21 | + - { type: revert, section: Reverts, hidden: false } |
| 22 | + - { type: docs, section: Documentation, hidden: false } |
| 23 | + - { type: ci, section: Continuous Integration, hidden: true } |
| 24 | + - { type: build, section: Build System, hidden: false } |
| 25 | + |
| 26 | + - - '@semantic-release/changelog' |
| 27 | + - {} |
| 28 | + |
| 29 | + - - '@semantic-release/github' |
| 30 | + - {} |
| 31 | + |
| 32 | + - - '@semantic-release/npm' |
| 33 | + - {} |
| 34 | + |
| 35 | + - - '@semantic-release/git' |
| 36 | + - assets: |
| 37 | + - package.json |
| 38 | + - CHANGELOG.md |
| 39 | + message: |- |
| 40 | + chore(release): ${nextRelease.version} [skip ci] |
| 41 | +
|
| 42 | + ${nextRelease.notes} |
0 commit comments