Skip to content

Commit

Permalink
ci: fix releaserc format
Browse files Browse the repository at this point in the history
  • Loading branch information
tdreyno committed Jan 6, 2021
1 parent 012e422 commit b7cf52a
Showing 1 changed file with 30 additions and 16 deletions.
46 changes: 30 additions & 16 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,21 +1,35 @@
{
"release": {
"branches": ["main"]
},
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/npm", {
"pkgRoot": "pkg"
}],
["@semantic-release/git", {
"assets": ["package.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
["@semantic-release/github", {
"assets": [
{"path": "pkg/dist-web/index.min.js", "label": "Minified Web Distribution"}
]
}]
[
"@semantic-release/npm",
{
"pkgRoot": "pkg"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "pkg/dist-web/index.min.js",
"label": "Minified Web Distribution"
}
]
}
]
]
}
}

0 comments on commit b7cf52a

Please sign in to comment.