- Beta releases don't need to commit version bumps back to repo - This allows semantic-release to complete successfully - NPM publishing will still work for @beta tag
20 lines
376 B
JSON
20 lines
376 B
JSON
{
|
|
"branches": [
|
|
{
|
|
"name": "main",
|
|
"prerelease": "beta"
|
|
},
|
|
{
|
|
"name": "stable"
|
|
}
|
|
],
|
|
"plugins": [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
"./tools/semantic-release-sync-installer.js",
|
|
"@semantic-release/github"
|
|
]
|
|
}
|