cz-ghostwriter
Version:
A configurable commitizen adapter
138 lines (83 loc) • 2.63 kB
Markdown
<h1 align="center">cz-ghostwriter</h1>
<div align="center">
[](https://www.npmjs.com/package/cz-ghostwriter)
</div>
<br />
You want to leverage commitizen to enforce a consistent commit messages that can be parsed to
generate a `CHANGELOG.md` but none of the available presets support your commit types or tools,
e.g., Bitbucket, JIRA, Trello. This preset supports configuration via a `.changelogrc.js` file.
<br />
**This package is best used alongside the other `ghostwriter` tools. Each tool can be configured
using the same `.changelogrc.js` file:**
- [commitlint-config-ghostwriter](../commitlint-config-ghostwriter)
- [conventional-changelog-ghostwriter](../conventional-changelog-ghostwriter)
<br />
## Installation
<details>
<summary><strong>npm</strong></summary>
<br />
```sh
npm install --save-dev cz-ghostwriter
```
</details>
<br />
<details open>
<summary><strong>pnpm</strong></summary>
<br />
```sh
pnpm install --save-dev cz-ghostwriter
```
</details>
<br />
<details>
<summary><strong>yarn</strong></summary>
<br />
```sh
yarn add --dev cz-ghostwriter
```
</details>
<br />
## Usage
1. Create and configure a `.changelogrc.js` file in the root of your repository
2. Update commitizen to leverage `cz-ghostwriter`
```json
{
...
"path": "./node_modules/cz-ghostwriter"
...
}
```
3. Run commitizen
<br />
## Configuration
### `issuePrefixes` : _string[]_
The array of prefixes used to detect references to issues.
<br >
### `issueReferencesPrefix` : _string = "for"_
The prefix to use before listing issues that a commit refers to. Defaults to `"for"`.
<br >
### `preset` : _"github" | undefined_
The configuration preset to use which will set other configuration properties. If this property is
set the following configuration properties are overwritten, i.e., nullable:
- `issuePrefixes`
<br >
### `scopes` : _Scope[] | undefined_
The array of scopes that are available for selection when commiting. If left `undefined`, then any
scope may be entered when committing.
```ts
type Scope = { description: string; type: string };
```
<br >
### `types` : _Array<HiddenType | VisibleType>_
The array of type objects representing the explicitly supported commit message types, and whether
they should show up in generated CHANGELOGs.
```ts
type CommitType = { description: string; type: string };
type HiddenType = CommitType & { hidden: true; section: undefined };
type VisibleType = CommitType & { hidden: undefined; section: string };
```