1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# [commitizen-deno-provider](https://pypi.org/project/commitizen-deno-provider/)
A provider for **Deno** projects. The provider updates the version in `deno.json` and `jsr.json` files.
<!-- TODO: What features does the plugin provide? -->
## Installation
```sh
pip install commitizen-deno-provider
```
## Usage
Add `deno-provider` to your configuration file.
Example for `.cz.yaml`:
```yaml
---
commitizen:
major_version_zero: true
name: cz_conventional_commits
tag_format: $version
update_changelog_on_bump: true
version_provider: deno-provider
version_scheme: semver
```
|