npm-run-all
npm-run-all copied to clipboard
Unknown option: 'xxxx:commitizen_path' with pnpm
if my package.json includes such config field:
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
If I run npm-run-all script with pnpm ,
It would print Unknown option: 'xxxx:commitizen_path' in terminal, and exit with code 1.
Same problem.

same problem
me too
You can use concurrently as a replacement until this gets fixed
same problem
When i remove name from package.json, it work
Remove the config section from package.json, and create .czrc file instead then move config into it.
{
"path": "cz-conventional-changelog"
}