-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.versionrc.json
More file actions
21 lines (21 loc) · 1019 Bytes
/
Copy path.versionrc.json
File metadata and controls
21 lines (21 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"header": "# Changelog\n\nAll notable changes to QuerySpec are documented here. Generated from Conventional Commits by `standard-version`.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/).\n",
"tag-prefix": "v",
"commit-all": true,
"scripts": {
"postbump": "node scripts/postbump-baseline.mjs && node scripts/postbump-apicompat.mjs"
},
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance" },
{ "type": "refactor", "section": "Refactoring" },
{ "type": "docs", "section": "Documentation" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "CI" },
{ "type": "chore", "hidden": true },
{ "type": "style", "hidden": true },
{ "type": "revert", "section": "Reverts" }
]
}