mirror of
https://ghfast.top/https://github.com/discourse/discourse-mcp.git
synced 2026-07-16 11:47:54 +08:00
Introduce conventional commits-based release workflow using standard-version. Adds config via .versionrc.json and pnpm scripts for dry-run and prereleases.
19 lines
678 B
JSON
19 lines
678 B
JSON
{
|
|
"$schema": "https://unpkg.com/standard-version/schema.json",
|
|
"types": [
|
|
{ "type": "feat", "section": "Features" },
|
|
{ "type": "fix", "section": "Bug Fixes" },
|
|
{ "type": "perf", "section": "Performance" },
|
|
{ "type": "refactor", "section": "Refactoring" },
|
|
{ "type": "docs", "section": "Documentation", "hidden": false },
|
|
{ "type": "build", "section": "Build System", "hidden": false },
|
|
{ "type": "chore", "section": "Chores", "hidden": true },
|
|
{ "type": "test", "section": "Tests", "hidden": false },
|
|
{ "type": "ci", "section": "CI", "hidden": false }
|
|
],
|
|
"skip": {
|
|
"tag": false
|
|
},
|
|
"header": "Changelog",
|
|
"commitAll": true
|
|
}
|