-
Notifications
You must be signed in to change notification settings - Fork 40
/
release.config.js
86 lines (80 loc) · 2.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
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
76
77
78
79
80
81
82
83
84
85
86
'use strict';
// TODO: replace this with @xunnamius/semantic-release-projector-config
const updateChangelog =
process.env.UPDATE_CHANGELOG === 'true' ||
// ? Legacy
process.env.SHOULD_UPDATE_CHANGELOG === 'true';
const { changelogTitle, parserOpts, writerOpts } = require('./conventional.config');
module.exports = {
branches: [
'+([0-9])?(.{+([0-9]),x}).x',
'master',
{
name: 'canary',
channel: 'canary',
prerelease: true
}
],
plugins: [
[
'@semantic-release/commit-analyzer',
{
parserOpts,
releaseRules: [
// ? releaseRules are checked first; if none match, defaults are
// ? checked next.
// ! These two lines must always appear first and in order:
{ breaking: true, release: 'major' },
{ revert: true, release: 'patch' },
// * Custom release rules, if any, may appear next:
{ type: 'build', release: 'patch' }
]
}
],
[
'@semantic-release/release-notes-generator',
{
parserOpts,
writerOpts
}
],
...(updateChangelog
? [
[
'@semantic-release/exec',
{
prepareCmd: 'CHANGELOG_SKIP_TITLE=true npm run build:changelog'
}
],
['@semantic-release/changelog', { changelogTitle }],
[
'@semantic-release/exec',
{
prepareCmd: 'NODE_ENV=format npx remark --output --frail CHANGELOG.md'
}
],
[
'@semantic-release/exec',
{
prepareCmd: 'npx prettier --write CHANGELOG.md'
}
]
]
: []),
['@semantic-release/npm'],
[
'@semantic-release/git',
{
assets: [
'package.json',
'package-lock.json',
'npm-shrinkwrap.json',
'CHANGELOG.md',
'docs'
],
message: 'release: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
}
],
['@semantic-release/github']
]
};