Skip to content

Commit

Permalink
feat: changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterYinusa committed Jul 1, 2024
1 parent 44aaba5 commit ebe849a
Show file tree
Hide file tree
Showing 3 changed files with 1,147 additions and 21 deletions.
9 changes: 9 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "chore", "hidden": true },
{ "type": "docs", "hidden": true },
{ "type": "refactor", "hidden": true }
]
}
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@
"docs": "typedoc --options typedoc.json",
"lint": "eslint './src/**/*.ts' --fix",
"format": "prettier --write .",
"prepare": "husky"
"prepare": "husky",
"release": "commit-and-tag-version",
"release:major": "commit-and-tag-version --release-as major",
"release:minor": "commit-and-tag-version --release-as minor",
"release:patch": "commit-and-tag-version --release-as patch"
},
"engines": {
"node": ">=20"
Expand Down Expand Up @@ -93,6 +97,7 @@
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
Expand Down
Loading

0 comments on commit ebe849a

Please sign in to comment.