-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.config.js
61 lines (51 loc) · 1.85 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
import { readFileSync } from 'node:fs'
const commitPartial = readFileSync('./changelog-template-commit.hbs', { encoding: 'utf-8' })
/**
* Adds the commit body line by line so I can add it with the correct indentation in `changelog-template-commit.hbs`.
*/
function finalizeContext (context) {
for (const commitGroup of context.commitGroups) {
for (const commit of commitGroup.commits) {
commit.bodyLines = commit.body?.split('\n').filter((line) => line !== '') ?? []
}
}
return context
}
/** @type {import('semantic-release').Options} */ const options = {
branches: [
'main',
],
plugins: [
// This analyzes all new commits and determines whether to release a new version.
// https://github.com/semantic-release/commit-analyzer
'@semantic-release/commit-analyzer',
// This takes the releasing commits’ messages and compiles release notes to be used for the CHANGELOG.md file and the GitHub release.
// https://github.com/semantic-release/release-notes-generator
['@semantic-release/release-notes-generator', {
preset: 'conventionalcommits',
writerOpts: {
commitPartial,
finalizeContext,
},
}],
// This creates/updates the CHANGELOG.md file.
// https://github.com/semantic-release/changelog
'@semantic-release/changelog',
// This updates the package.json and package-lock.json files with the new version number.
// https://github.com/semantic-release/npm
'@semantic-release/npm',
// This creates a GitHub release and attaches assets to it.
// https://github.com/semantic-release/github
['@semantic-release/github', {
assets: [
{ path: 'dist/ColorPicker.css' },
{ path: 'dist/ColorPicker.d.ts' },
{ path: 'dist/ColorPicker.js' },
],
}],
// This creates a release commit in the git repository.
// https://github.com/semantic-release/git
'@semantic-release/git',
],
}
export default options