Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
27 views

I am trying to get husky to launch commitizen in a pre-commit hook. Works fine on Linux. On Mac, not so much. #!/bin/bash exec < /dev/tty && cz commit || true It looks like polling is ...
Charlie Benger-Stevenson's user avatar
0 votes
1 answer
169 views

I'm using conventional-changelog's standard-version to manage semantic versioning and generate my CHANGELOG.md in my application. I've already made my first release, which means my app's version is ...
Otávio Reis Perkles's user avatar
0 votes
0 answers
584 views

I use the cz-customizable package to have conventional commits in the project; I use a customized configuration file named .cz-customize.js, and I've changed some defaults too. Is it possible to make ...
siavash bashiri's user avatar
1 vote
1 answer
1k views

Can we configure commitizen command cz bump to bump to a default version (i.e. PATCH ) if there is no commit bump_pattern (i.e. ^(break|new|fix|hotfixi)) in the commit message? This is the part in ...
Jotta E's user avatar
  • 302
2 votes
2 answers
2k views

Hello I am building a pyproject object and I have the following two sections [tool.poetry] version = "0.1.0" [tool.commitizen] version = "0.1.0" As you can see poetry uses the ...
Tlaloc-ES's user avatar
  • 5,344
7 votes
1 answer
2k views

I have a pyproject.toml with [tool.poetry] name = "my-project" version = "0.1.0" [tool.commitizen] name = "cz_conventional_commits" version = "0.1.0" I add a ...
Shay's user avatar
  • 1,509
1 vote
1 answer
708 views

Now I want to using commitizen to commit the git repo in linux Ubuntu 20.04.4 LTS , first install the commitizen(Node v16.14.2): npm install -g commitizen when I commit code using commitizen like ...
Dolphin's user avatar
  • 40.8k
1 vote
0 answers
1k views

I am trying to configure commitizen with husky and when I commit using a custom script from package.json commit gets triggered twice. This is not the case when I try to run git commit though. Opened ...
Alien128's user avatar
  • 313
0 votes
1 answer
341 views

I am currently using Jest, Husky, Commitizen, and Vuepress. However, when jest tests or the build fails, the commit hook still works. How can I fix this to exit the commitizen hook when things fail? ...
Staghouse's user avatar
  • 307
0 votes
1 answer
587 views

I would like to start incorporating commitizen in my repository; however, implementation seems to revolve around adding a js dependency on the repository, and calling it independently (and enforcing ...
Stavros's user avatar
  • 346
0 votes
1 answer
406 views

I just updated an Angular 11 app to eslint and installed commitizen, commitlint, husky and semantic-release to drive CI through npm and Travis. I followed the instructions on the Angular recommended ...
Chris Curnow's user avatar
1 vote
0 answers
1k views

I have a problem with git cz. I installed it following *Conventional commit messages as a global utility * and then when I hit git cz everything works but wen I reopen my terminal and hit again git ...
Daniel's user avatar
  • 163
1 vote
1 answer
2k views

I'm trying to build such a configuration which would work for both command line and Intellij. Here is a part of my package.json "config": { "commitizen": { "path": "cz-conventional-changelog" ...
Carter's user avatar
  • 10.9k
1 vote
0 answers
2k views

My JS project uses a NPM package called commitizen: https://github.com/commitizen/cz-cli commitizen is added to my devDependencies in package.json file. commitizen uses internally a package called ...
gabric's user avatar
  • 1,985
2 votes
1 answer
3k views

I have a project that was using commitizen without problems. I've decided to add husky to run precommit hooks with prettier. The problem is that when I run the npm run cm command, I get this error... ...
A. Iglesias's user avatar
  • 2,675
1 vote
1 answer
647 views

Here are the Commitizen types: What Commitizen type should I use for a change that is an improvement for an existing feature? CZ resources : http://commitizen.github.io/cz-cli/ https://github.com/...
Rémi Becheras's user avatar