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
|
|
|
}
|
|
|
|
],
|
2024-02-08 14:38:55 +00:00
|
|
|
"@semantic-release/npm",
|
2020-02-19 14:13:17 +00:00
|
|
|
[
|
|
|
|
"@semantic-release/exec",
|
|
|
|
{
|
2024-02-09 13:23:49 +00:00
|
|
|
"prepareCmd": "pnpm release:prepare --version=${nextRelease.version} --sha=${nextRelease.gitHead} --tries=3 --platform=linux/amd64,linux/arm64 --exit-on-error=false",
|
|
|
|
"publishCmd": "pnpm release:publish --version=${nextRelease.version} --sha=${nextRelease.gitHead} --platform=linux/amd64,linux/arm64 --exit-on-error=false"
|
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-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
|
|
|
}
|