- Added `.versionrc.json` to define conventional release configurations for `brainy-models-package`: - Configured tag prefix as `brainy-models-v`. - Defined custom commit message format and section mapping for release notes. - Added `LICENSE` file with MIT license for legal clarity. - Updated `README.md`: - Adjusted internal NPM script names to use underscore prefix for consistency (`_release:patch`, `_github-release`). **Purpose**: Establish standardized versioning, licensing, and script conventions for the `brainy-models-package` to improve maintainability and alignment with project standards.
38 lines
645 B
JSON
38 lines
645 B
JSON
{
|
|
"tagPrefix": "brainy-models-v",
|
|
"commitMessageFormat": "chore(brainy-models): release {{currentTag}}",
|
|
"types": [
|
|
{
|
|
"type": "feat",
|
|
"section": "Features"
|
|
},
|
|
{
|
|
"type": "fix",
|
|
"section": "Bug Fixes"
|
|
},
|
|
{
|
|
"type": "chore",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"type": "docs",
|
|
"section": "Documentation"
|
|
},
|
|
{
|
|
"type": "style",
|
|
"hidden": true
|
|
},
|
|
{
|
|
"type": "refactor",
|
|
"section": "Code Refactoring"
|
|
},
|
|
{
|
|
"type": "perf",
|
|
"section": "Performance Improvements"
|
|
},
|
|
{
|
|
"type": "test",
|
|
"hidden": true
|
|
}
|
|
]
|
|
}
|