fix: added missing release script to package.json 🔧

This commit is contained in:
2025-09-20 13:26:41 +05:00
parent 950ac676f0
commit 1399527ddb
2 changed files with 3289 additions and 103 deletions

3208
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -6,9 +6,13 @@
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"prepare": "husky",
"release": "release-it"
},
"dependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@faker-js/faker": "^9.3.0",
"@hookform/resolvers": "^5.1.1",
"@pyncz/tailwind-mask-image": "^2.0.0",
@@ -20,8 +24,10 @@
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commitlint": "^19.8.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"husky": "^9.1.7",
"input-otp": "^1.4.2",
"jotai": "2.8.0",
"lucide-react": "^0.523.0",
@@ -41,6 +47,7 @@
"react-phone-number-input": "^3.4.9",
"react-resizable-panels": "^3.0.3",
"recharts": "^3.0.0",
"release-it": "^19.0.5",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
@@ -62,5 +69,54 @@
"ts-node": "^10.9.2",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "style",
"section": "Style"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
}
}
}