This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelease.config.js
97 lines (92 loc) · 2.16 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
const debug = require('debug')(
`${require('./package.json').name}:semantic-release-config`
);
const SHOULD_UPDATE_CHANGELOG = process.env.SHOULD_UPDATE_CHANGELOG === 'true';
const SHOULD_DEPLOY = process.env.SHOULD_DEPLOY === 'true';
debug(`SHOULD_UPDATE_CHANGELOG:${SHOULD_UPDATE_CHANGELOG}`);
debug(`SHOULD_DEPLOY:${SHOULD_DEPLOY}`);
const {
changelogTitle,
parserOpts,
writerOpts,
additionalReleaseRules
} = require('./.changelogrc.js');
module.exports = {
branches: [
'+([0-9])?(.{+([0-9]),x}).x',
'main',
{
name: 'canary',
channel: 'canary',
prerelease: true
}
],
plugins: [
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
parserOpts,
releaseRules: additionalReleaseRules
}
],
[
'@semantic-release/release-notes-generator',
{
preset: 'angular',
parserOpts,
writerOpts
}
],
...(SHOULD_UPDATE_CHANGELOG
? [
[
'@semantic-release/exec',
{
prepareCmd: 'CHANGELOG_SKIP_TITLE=true npm run build-changelog'
}
],
['@semantic-release/changelog', { changelogTitle }],
[
'@semantic-release/exec',
{
prepareCmd:
'remark -o --use reference-links --use gfm --use frontmatter 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'],
...(SHOULD_DEPLOY
? [
[
'@semantic-release/exec',
{
successCmd: 'npm run deploy'
}
]
]
: [])
]
};
debug('exports: %O', module.exports);