2020-02-19 14:13:17 +00:00
|
|
|
{
|
|
|
|
"plugins": [
|
|
|
|
"@semantic-release/commit-analyzer",
|
|
|
|
"@semantic-release/release-notes-generator",
|
2020-11-04 18:06:03 +00:00
|
|
|
[
|
|
|
|
"@semantic-release/github",
|
|
|
|
{
|
2021-12-09 20:12:49 +00:00
|
|
|
"releasedLabels": false,
|
|
|
|
"assets": [
|
|
|
|
{
|
|
|
|
"path": "tmp/docs.tgz",
|
|
|
|
"label": "docs.tgz"
|
|
|
|
}
|
|
|
|
]
|
2020-11-04 18:06:03 +00:00
|
|
|
}
|
|
|
|
],
|
2020-02-19 14:13:17 +00:00
|
|
|
[
|
|
|
|
"@semantic-release/exec",
|
|
|
|
{
|
2020-11-24 08:16:57 +00:00
|
|
|
"verifyConditionsCmd": "run-s verify",
|
2021-12-09 20:12:49 +00:00
|
|
|
"prepareCmd": "run-s \"release:prepare -- {@}\" -- --release=${nextRelease.version} --sha=${nextRelease.gitHead} --tag=${nextRelease.channel}",
|
|
|
|
"publishCmd": "run-s \"release:publish -- {@}\" -- --release=${nextRelease.version} --sha=${nextRelease.gitHead} --tag=${nextRelease.channel}"
|
2020-02-19 14:13:17 +00:00
|
|
|
}
|
2020-03-11 16:09:35 +00:00
|
|
|
]
|
2020-02-19 14:13:17 +00:00
|
|
|
],
|
|
|
|
"analyzeCommits": {
|
|
|
|
"releaseRules": [
|
|
|
|
{
|
|
|
|
"type": "docs",
|
|
|
|
"scope": "readme.md",
|
|
|
|
"release": "patch"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "build",
|
|
|
|
"release": "patch"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-03-15 17:52:19 +00:00
|
|
|
"preset": "conventionalcommits",
|
|
|
|
"presetConfig": {
|
|
|
|
"types": [
|
|
|
|
{
|
|
|
|
"type": "feat",
|
|
|
|
"section": "Features"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "feature",
|
|
|
|
"section": "Features"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "fix",
|
|
|
|
"section": "Bug Fixes"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "perf",
|
|
|
|
"section": "Performance Improvements"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "revert",
|
|
|
|
"section": "Reverts"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "docs",
|
|
|
|
"section": "Documentation"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "style",
|
|
|
|
"section": "Styles"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "chore",
|
|
|
|
"section": "Miscellaneous Chores"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "refactor",
|
|
|
|
"section": "Code Refactoring"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "test",
|
|
|
|
"section": "Tests"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "build",
|
|
|
|
"section": "Build System"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "ci",
|
|
|
|
"section": "Continuous Integration"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2021-04-21 17:35:20 +00:00
|
|
|
"tagFormat": "${version}",
|
|
|
|
"branches": [
|
|
|
|
{
|
2021-08-16 16:27:45 +00:00
|
|
|
"name": "v25",
|
|
|
|
"range": "25.x",
|
|
|
|
"channel": "version25"
|
2021-04-21 17:35:20 +00:00
|
|
|
},
|
|
|
|
{
|
2021-04-22 14:32:12 +00:00
|
|
|
"name": "main"
|
2021-04-21 17:35:20 +00:00
|
|
|
}
|
|
|
|
]
|
2020-02-19 14:13:17 +00:00
|
|
|
}
|