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