-
Notifications
You must be signed in to change notification settings - Fork 10
/
release.config.js
51 lines (51 loc) · 1.26 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
module.exports = {
extends: ['semantic-release-monorepo'],
branches: ['release'],
commitPaths: ['./libs/', './apps/'],
monorepo: [
['@semantic-release/commit-analyzer', {
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING'],
},
}],
['@semantic-release/release-notes-generator', {
preset: 'angular',
parserOpts: {
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING'],
},
writerOpts: {
commitsSort: ['subject', 'scope'],
},
}],
],
plugins: [
'@semantic-release/git',
],
verifyConditions: [
'@semantic-release/changelog',
'@semantic-release/npm',
'@semantic-release/git',
'@semantic-release/github',
],
prepare: [
['@semantic-release/changelog', {
changelogFile: 'CHANGELOG.md',
}],
['@semantic-release/npm', { addChannel: 'next' }],
['@semantic-release/git', {
assets: ['CHANGELOG.md'],
// eslint-disable-next-line no-template-curly-in-string
message: 'Build: ${nextRelease.gitTag} [skip ci]',
}],
],
publish: [
{
path: '@semantic-release/npm',
npmPublish: true,
},
{
path: '@semantic-release/github',
assets: ['CHANGELOG.md'],
},
],
}