Skip to content

Commit b7cf52a

Browse files
committed
ci: fix releaserc format
1 parent 012e422 commit b7cf52a

File tree

1 file changed

+30
-16
lines changed

1 file changed

+30
-16
lines changed

.releaserc

+30-16
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,35 @@
11
{
2-
"release": {
3-
"branches": ["main"]
4-
},
2+
"branches": [
3+
"main"
4+
],
55
"plugins": [
66
"@semantic-release/commit-analyzer",
77
"@semantic-release/release-notes-generator",
8-
["@semantic-release/npm", {
9-
"pkgRoot": "pkg"
10-
}],
11-
["@semantic-release/git", {
12-
"assets": ["package.json"],
13-
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
14-
}],
15-
["@semantic-release/github", {
16-
"assets": [
17-
{"path": "pkg/dist-web/index.min.js", "label": "Minified Web Distribution"}
18-
]
19-
}]
8+
[
9+
"@semantic-release/npm",
10+
{
11+
"pkgRoot": "pkg"
12+
}
13+
],
14+
[
15+
"@semantic-release/git",
16+
{
17+
"assets": [
18+
"package.json"
19+
],
20+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
21+
}
22+
],
23+
[
24+
"@semantic-release/github",
25+
{
26+
"assets": [
27+
{
28+
"path": "pkg/dist-web/index.min.js",
29+
"label": "Minified Web Distribution"
30+
}
31+
]
32+
}
33+
]
2034
]
21-
}
35+
}

0 commit comments

Comments
 (0)