forked from typegoose/typegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.js
75 lines (75 loc) · 2.31 KB
/
.releaserc.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = {
plugins: [
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [
{breaking: true, release: 'major'},
{type: 'feat', release: 'minor'},
{type: 'fix', release: 'patch'},
{type: 'docs', release: false},
{type: 'style', release: false},
{type: 'refactor', release: 'patch'},
{type: 'perf', release: 'patch'},
{type: 'test', release: false},
{type: 'chore', release: false},
{type: 'deps', release: 'minor'},
{type: 'devdeps', release: false},
{type: 'revert', release: 'patch'},
// don't trigger another release on release commit
{type: 'release', release: false}
],
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES']
}
}
],
[
'@semantic-release/release-notes-generator',
{
preset: 'conventionalcommits',
presetConfig: {
types: [
{type: 'feat', section: 'Features'},
{type: 'fix', section: 'Fixes'},
{type: 'docs', hidden: true},
{type: 'style', section: 'Style'},
{type: 'refactor', section: 'Refactor'},
{type: 'perf', section: 'Performance'},
{type: 'test', hidden: true},
{type: 'chore', hidden: true},
{type: 'deps', section: 'Dependencies'},
{type: 'devdeps', section: 'Dev-Dependencies'},
{type: 'revert', section: 'Reverts'},
{type: 'release', hidden: true}
]
}
}
],
'@semantic-release/changelog',
[
'@semantic-release/npm',
{
npmPublish: true,
pkgRoot: './',
},
],
[
'@semantic-release/git', {
assets: ['package.json', 'CHANGELOG.md'],
message: 'release: v${nextRelease.version}'
}
],
'@semantic-release/github'
],
branches: [
// from what I read in the semantic-release configuration and in some issues, the order has to be like this:
// other branches
// main / upstream branch
// prerelease branches
{ name: "old\\/(\\d+)(\\.x)", range: "${name.replace(/^old\\//g, '')}", prerelease: false },
"master",
{ name: "beta", prerelease: true }
]
};