-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.releaserc
28 lines (28 loc) · 984 Bytes
/
.releaserc
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
plugins:
- '@semantic-release/commit-analyzer'
- [
'@semantic-release/release-notes-generator',
{
preset: 'conventionalcommits',
presetConfig:
{
types:
[
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'perf', section: 'Performance Improvements' },
{ type: 'revert', section: 'Reverts' },
{ type: 'refactor', section: 'Refactor' },
{ type: 'build', section: 'Internal' },
{ type: 'chore', section: 'Internal' },
{ type: 'ci', section: 'Internal' },
{ type: 'docs', section: 'Internal' },
{ type: 'style', section: 'Internal' },
{ type: 'test', section: 'Internal' },
],
},
},
]
- '@semantic-release/changelog'
- '@semantic-release/npm'
- '@semantic-release/git'