feat(dev): adopt standard-version for changelog generation (#602)

This commit is contained in:
Jagandeep Brar
2022-01-24 20:55:55 -05:00
committed by GitHub
parent 63572f18b0
commit c189fb3632
4 changed files with 2501 additions and 655 deletions

31
.versionrc Normal file
View File

@@ -0,0 +1,31 @@
{
"skip": {
"bump": true,
"commit": true,
"tag": true,
"changelog": false
},
"types": [
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "refactor",
"section": "Tweaks"
}
],
"releaseCommitMessageFormat": "chore(release): {{currentTag}} [skip ci]"
}

File diff suppressed because it is too large Load Diff

1871
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,16 +1,19 @@
{
"name": "lunasea",
"version": "0.0.0",
"description": "Self-Hosted Controller",
"version": "6.0.1",
"private": true,
"scripts": {
"prepare": "husky install",
"commit": "cz"
"commit": "git add . && cz",
"changelog": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.0"
"husky": "^7.0.0",
"standard-version": "^9.3.2"
}
}