commitizen / commitizen/cz-cli

Can I pass the adapter config from node but not read from then package.json

Open
#667 3 comments 1 reaction 0 assignees View on GitHub
Dominant language
JavaScript
Stars
17.5k
Forks
566
Avg merge
8h 16m
Merged PRs (30d)
1

Description

Hi, thanks you for the great work.
I am trying write a new command to call the `cz-cli` like the [doc](https://github.com/commitizen/cz-cli#commitizen-for-multi-repo-projects) said.
However, I will get some error as below when I run the command if the `pakcage.json` does not have the `config` propery.
```
\node_modules\commitizen\node_modules\cz-conventional-changelog\index.js:10
defaultType: process.env.CZ_TYPE || config.defaultType,
^
TypeError: Cannot read property 'defaultType' of undefined

```
I want the user can just run a commit command and do not need to add package.json config. Is that possible?Someways like:
```
const bootstrap = require('commitizen/dist/cli/git-cz').bootstrap
const path = require('path')
bootstrap({
cliPath: path.join(__dirname, '../node_modules/commitizen'),
config: {
"path": 'cz-conventional-changelog'
},
adapter: {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
})
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.