-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathrelease.config.js
More file actions
40 lines (40 loc) · 1.17 KB
/
release.config.js
File metadata and controls
40 lines (40 loc) · 1.17 KB
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
module.exports = {
branches: ['main'],
plugins: [
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [
{ type: 'build', release: 'patch' },
{ type: 'build', scope: 'patch', release: 'patch' },
{ type: 'build', scope: 'minor', release: 'minor' },
{ type: 'build', scope: 'major', release: 'major' },
{ type: 'feat', release: 'minor' },
{ type: 'feat', scope: 'minor', release: 'minor' },
{ type: 'feat', scope: 'major', release: 'major' },
{ type: 'fix', release: 'patch' },
{ type: 'fix', scope: 'patch', release: 'patch' },
{ type: 'fix', scope: 'minor', release: 'minor' },
],
},
],
'@semantic-release/release-notes-generator',
[
'@semantic-release/changelog',
{
changelogTitle: '# Changelog',
},
],
'@semantic-release/npm',
[
'@semantic-release/git',
{
assets: ['CHANGELOG.md', 'package.json'],
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
'@semantic-release/github',
],
};