chore: add commitizen and cz-conventional-changelog packages

make the repo commitizen friendly and follow conventional commits specification
This commit is contained in:
Sat Naing
2022-10-16 10:39:43 +06:30
parent adb331e219
commit 2acea86371
2 changed files with 2638 additions and 7 deletions
+2629 -6
View File
File diff suppressed because it is too large Load Diff
+9 -1
View File
@@ -7,7 +7,8 @@
"start": "astro dev", "start": "astro dev",
"build": "astro build", "build": "astro build",
"preview": "astro preview", "preview": "astro preview",
"astro": "astro" "astro": "astro",
"cz": "cz"
}, },
"dependencies": { "dependencies": {
"@astrojs/rss": "^1.0.1", "@astrojs/rss": "^1.0.1",
@@ -23,7 +24,14 @@
"@astrojs/sitemap": "^1.0.0", "@astrojs/sitemap": "^1.0.0",
"@astrojs/tailwind": "^1.0.0", "@astrojs/tailwind": "^1.0.0",
"@tailwindcss/typography": "^0.5.7", "@tailwindcss/typography": "^0.5.7",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0" "react-dom": "^18.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
} }
} }