-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.config.js
40 lines (39 loc) · 1.06 KB
/
release.config.js
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
/** @type {import('semantic-release').GlobalConfig} */
/* eslint-disable no-template-curly-in-string */
module.exports = {
branches: ['main', 'next', { name: 'beta', prerelease: true }],
plugins: [
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [
{ type: 'docs', release: 'patch' },
{ type: 'refactor', release: 'patch' },
{ type: 'style', release: 'patch' },
{ type: 'fix', release: 'patch' },
{ type: 'test', release: 'patch' },
{ type: 'ci', release: 'patch' },
{ type: 'feat', release: 'minor' },
{ type: 'BREAKING_CHANGE', release: 'major' },
],
},
],
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
[
'@semantic-release/npm',
{
npmPublish: true,
},
],
[
'@semantic-release/git',
{
message: 'chore(release): v${nextRelease.version}',
assets: ['CHANGELOG.md'],
},
],
'@semantic-release/github',
],
}