discourse-mcp/.versionrc.json
Sam Saffron 02eb19007b
chore(release): add standard-version and release scripts
Introduce conventional commits-based release workflow using standard-version.
Adds config via .versionrc.json and pnpm scripts for dry-run and prereleases.
2025-08-20 13:41:53 +10:00

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
}