-
Notifications
You must be signed in to change notification settings - Fork 2
/
release.config.js
107 lines (97 loc) · 2.57 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
'use strict';
const debug = require('debug')(
`${require(`${process.cwd()}/package.json`).name}:semantic-release-config`
);
// TODO: turn this into @projector-js/config-semantic-release-atam
const updateChangelog =
process.env.UPDATE_CHANGELOG === 'true' ||
// ? Legacy
process.env.SHOULD_UPDATE_CHANGELOG === 'true';
debug(`will update changelog: ${updateChangelog ? 'yes' : 'no'}`);
const {
changelogTitle,
parserOpts,
writerOpts,
options: { lernaPackage: targetPkgName },
gitRawCommitsOpts: { '--': gitLogPathspecs }
} = require('./conventional.config');
debug('monorepo release target: %O', targetPkgName);
debug('monorepo pathspecs: %O', gitLogPathspecs);
module.exports = {
tagFormat: `${targetPkgName}@\${version}`,
gitLogOptions: {
path: gitLogPathspecs
},
branches: [
'+([0-9])?(.{+([0-9]),x}).x',
'main',
{
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 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: ${targetPkgName}@\${nextRelease.version} [skip ci]\n\n\${nextRelease.notes}`
}
],
['@semantic-release/github']
]
};
debug('exports: %O', module.exports);