forked from futurGH/docma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc.cjs
53 lines (53 loc) · 1.18 KB
/
.releaserc.cjs
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
43
44
45
46
47
48
49
50
51
52
53
module.exports = {
branch: 'master',
plugins: [
[
'@qiwi/semrel-metabranch',
{
publish: {
action: 'push',
branch: 'gh-pages',
from: './docs',
to: './',
message: 'update docs ${nextRelease.gitTag}',
}
}
],
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [
{type: 'docs', release: 'patch'},
{type: 'doc', release: 'patch'},
{type: 'refactor', release: 'patch'},
],
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES']
}
}
],
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
'@semrel-extra/npm',
[
'@semantic-release/exec',
{
prepareCmd: 'YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install && git add yarn.lock'
}
],
[
'@semantic-release/github',
{
successComment: false,
failComment: false
}
],
[
'@semantic-release/git',
{
message: 'chore(release): ${nextRelease.gitTag} [skip ci]\n\n${nextRelease.notes}'
}
]
]
}