brainy/.versionrc.json

60 lines
2 KiB
JSON
Raw Normal View History

{
"types": {
"feat": {
"description": "✨ New Features",
"title": "✨ Features"
},
"fix": {
"description": "🐛 Bug Fixes",
"title": "🐛 Bug Fixes"
},
"docs": {
"description": "📚 Documentation",
"title": "📚 Documentation"
},
"style": {
"description": "💄 Code Style",
"title": "💄 Styles",
"hidden": true
},
"refactor": {
"description": "♻️ Code Refactoring",
"title": "♻️ Code Refactoring"
},
"perf": {
"description": "⚡ Performance Improvements",
"title": "⚡ Performance Improvements"
},
"test": {
"description": "✅ Tests",
"title": "✅ Tests"
},
"build": {
"description": "🔧 Build System",
"title": "🔧 Build System"
},
"ci": {
"description": "🔄 CI/CD",
"title": "🔄 CI/CD"
},
"chore": {
"description": "🔧 Chores",
"title": "🔧 Chores",
"hidden": true
}
},
"compareUrlFormat": "https://github.com/soulcraftlabs/brainy/compare/{{previousTag}}...{{currentTag}}",
"commitUrlFormat": "https://github.com/soulcraftlabs/brainy/commit/{{hash}}",
"issueUrlFormat": "https://github.com/soulcraftlabs/brainy/issues/{{id}}",
"userUrlFormat": "https://github.com/{{user}}",
"releaseCommitMessageFormat": "chore(release): {{currentTag}}",
"issuePrefixes": ["#"],
"header": "# Changelog\n\nAll notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n",
"scripts": {
"postbump": "echo 'Version bumped to' $(node -p \"require('./package.json').version\")",
"precommit": "npm run build && npm test",
"postcommit": "echo 'Release commit created. Ready to push and publish!'",
"pretag": "echo 'Creating tag...'",
"posttag": "echo 'Tag created. Use: git push --follow-tags origin main && npm publish'"
}
}