forked from flixlix/power-flow-card-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.js
43 lines (43 loc) · 1.09 KB
/
.releaserc.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
module.exports = {
branches: ["main", { name: "dev", prerelease: true }],
preset: "conventionalcommits",
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@google/semantic-release-replace-plugin",
{
replacements: [
{
files: ["dist/power-flow-card-plus.js"],
from: /Power Flow Card Plus v(\d+\.\d+\.\d+)/,
to: "Power Flow Card Plus v${nextRelease.version}",
results: [
{
file: "dist/power-flow-card-plus.js",
hasChanged: true,
numMatches: 2,
numReplacements: 2,
},
],
countMatches: true,
},
],
},
],
["@semantic-release/npm", { npmPublish: false }],
[
"@semantic-release/git",
{
assets: ["CHANGELOG.md", "README.md", "package.json", "pnpm-lock.yaml"],
},
],
[
"@semantic-release/github",
{
assets: "dist/*.js",
},
],
],
};