Skip to content

Commit

Permalink
fix: changelog.md missing commits
Browse files Browse the repository at this point in the history
  • Loading branch information
jvandenaardweg committed Dec 12, 2022
1 parent e51573b commit e366257
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@
"release": "dotenv npx release-it",
"type-check": "tsc --noEmit",
"prepare": "is-ci || husky install",
"lint-staged": "lint-staged"
"lint-staged": "lint-staged",
"generate-changelog": "npx auto-changelog --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
"generate-changelog:preview": "npm run generate-changelog -- --stdout",
"generate-changelog:publish": "npm run generate-changelog -- -p"
},
"keywords": [
"homebridge-plugin",
Expand Down Expand Up @@ -70,10 +73,10 @@
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
"changelog": "npm run generate-changelog:preview"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
"after:bump": "npm run generate-changelog:publish"
},
"npm": {
"publish": false
Expand Down

0 comments on commit e366257

Please sign in to comment.