chore: add Standard Version

This commit is contained in:
MAZE 2023-10-05 16:54:16 +03:30
parent 9d7cddeb8b
commit afc330eef0
3 changed files with 2219 additions and 1 deletions

42
.versionrc.json Normal file
View File

@ -0,0 +1,42 @@
{
"types": [
{
"type": "feat",
"section": "✨ Features"
},
{
"type": "fix",
"section": "🐛 Bug Fixes"
},
{
"type": "chore",
"hidden": false,
"section": "🚚 Chores"
},
{
"type": "docs",
"hidden": false,
"section": "📝 Documentation"
},
{
"type": "style",
"hidden": false,
"section": "💄 Styling"
},
{
"type": "refactor",
"hidden": false,
"section": "♻️ Code Refactoring"
},
{
"type": "perf",
"hidden": false,
"section": "⚡️ Performance Improvements"
},
{
"type": "test",
"hidden": false,
"section": "✅ Testing"
}
]
}

2171
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,11 @@
"lint:style:fix": "npm run lint:style -- --fix",
"format": "prettier . --write",
"prepare": "husky install",
"commit": "git-cz"
"commit": "git-cz",
"release": "standard-version --no-verify",
"release:major": "npm run release -- --release-as major",
"release:minor": "npm run release -- --release-as minor",
"release:patch": "npm run release -- --release-as patch"
},
"dependencies": {
"@astrojs/react": "^3.0.3",
@ -48,6 +52,7 @@
"postcss-html": "1.5.0",
"prettier": "3.0.3",
"prettier-plugin-astro": "0.12.0",
"standard-version": "9.5.0",
"stylelint": "15.10.3",
"stylelint-config-html": "1.1.0",
"stylelint-config-idiomatic-order": "9.0.0",