Skip to content

Instantly share code, notes, and snippets.

@dgrebb
Created March 2, 2024 00:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgrebb/6e1956a7ddef34a81f036a1e1f8a88b5 to your computer and use it in GitHub Desktop.
Save dgrebb/6e1956a7ddef34a81f036a1e1f8a88b5 to your computer and use it in GitHub Desktop.
Commitizen config customization in package.json
{
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cz": "cz",
"release": "standard-version --no-verify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"title": "feat",
"description": "New feature."
},
"wip": {
"title": "wip",
"description": "Work in progress."
},
"chore": {
"title": "chore",
"description": "Maintenance and chores."
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment