chore(package): add commitizen package and script command

I installed the commitizen repo support using the cz-conventional-changelog init command and updated
the script section of the package.json file, adding the commit script so i can run bun commit
instead
This commit is contained in:
Triston Armstrong 2024-03-16 09:32:21 -05:00
parent 15d9d6d6bb
commit 7492219346
2 changed files with 3356 additions and 1 deletions

3348
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,8 @@
"dev": "vite", "dev": "vite",
"build": "tsc && vite build", "build": "tsc && vite build",
"preview": "vite preview", "preview": "vite preview",
"tauri": "tauri" "tauri": "tauri",
"commit": "cz"
}, },
"dependencies": { "dependencies": {
"@tauri-apps/api": "^1", "@tauri-apps/api": "^1",
@ -16,10 +17,16 @@
"devDependencies": { "devDependencies": {
"@tauri-apps/cli": "^1", "@tauri-apps/cli": "^1",
"autoprefixer": "^10.4.18", "autoprefixer": "^10.4.18",
"cz-conventional-changelog": "^3.3.0",
"postcss": "^8.4.35", "postcss": "^8.4.35",
"tailwindcss": "^3.4.1", "tailwindcss": "^3.4.1",
"typescript": "^5.0.2", "typescript": "^5.0.2",
"vite": "^5.0.0", "vite": "^5.0.0",
"vite-plugin-kaioken": "^0.0.7" "vite-plugin-kaioken": "^0.0.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
} }
} }