-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy path.releaserc.mjs
68 lines (62 loc) · 1.56 KB
/
.releaserc.mjs
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
const commitPartial = `*{{#if scope}} **{{scope}}:**
{{~/if}} {{#if subject}}
{{~subject}}
{{~else}}
{{~header}}
{{~/if}}
{{~!-- commit link --}}{{~#if hash}} {{#if @root.linkReferences~}}
([{{shortHash}}]({{commitUrlFormat}}))
{{~else}}
{{~shortHash}}
{{~/if}}{{~/if}}
{{~!-- commit references --}}
{{~#if references~}}
, closes
{{~#each references}} {{#if @root.linkReferences~}}
[
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}{{this.prefix}}{{this.issue}}]({{issueUrlFormat}})
{{~else}}
{{~#if this.owner}}
{{~this.owner}}/
{{~/if}}
{{~this.repository}}{{this.prefix}}{{this.issue}}
{{~/if}}{{/each}}
{{~/if}}
{{#each bodyLines}}
{{this}}
{{/each}}`
/**
* Adds the commit body line by line so I can add it with the correct indentation in `changelog-template-commit.hbs`.
*/
function finalizeContext(context) {
console.log(context)
for (const commitGroup of context.commitGroups) {
for (const commit of commitGroup.commits) {
commit.bodyLines = commit.body?.split('\n').filter((line) => line !== '') ?? []
}
}
return context
}
export default {
plugins: [
['@semantic-release/commit-analyzer', {
preset: 'conventionalcommits',
}],
['@semantic-release/release-notes-generator', {
preset: 'conventionalcommits',
writerOpts: {
commitPartial,
finalizeContext,
},
}],
['@semantic-release/exec', {
verifyReleaseCmd: 'echo ${nextRelease.version} > .VERSION'
}],
['@semantic-release/gitlab', {
assets: ['docker-compose.yml']
}],
],
}