chore(commit): add commitizen tool into dev dependencies

This commit is contained in:
raiper34
2024-10-13 21:00:15 +02:00
parent 80cf6a1d99
commit 607f17c1f1
2 changed files with 720 additions and 1 deletions
+9 -1
View File
@@ -15,11 +15,19 @@
"start": "npm run start:prod -w backend",
"docs": "docsify serve ./docs",
"deploy:docs": "npm run build:docs && netlify deploy --dir=dist/docs --prod",
"release": "npm run build && docker build -t raiper34/spooty:1.0.0 -t raiper34/spooty:latest . && docker push raiper34/spooty:1.0.0 && docker push raiper34/spooty:latest"
"release": "npm run build && docker build -t raiper34/spooty:1.0.0 -t raiper34/spooty:latest . && docker push raiper34/spooty:1.0.0 && docker push raiper34/spooty:latest",
"commit": "cz"
},
"devDependencies": {
"commitizen": "^4.3.1",
"copy-files-from-to": "^3.2.2",
"cz-conventional-changelog": "^3.3.0",
"docsify-cli": "^4.4.4",
"netlify-cli": "^10.5.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}