npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dubizzle/cz-conventional-changelog-for-any

v0.0.3

Published

Commitizen adapter following the conventional-changelog format, forked from https://github.com/digitalroute/cz-conventional-changelog-for-jira.

Downloads

34

Readme

cz-conventional-changelog-for-any

Commitizen friendly

Fork of https://github.com/digitalroute/cz-conventional-changelog-for-jira.

Additions made in this fork:

  • Custom types
  • Custom defaults
  • Additional configurations of branchNameRegExp, scopes and taskIdRegExp
  • Consistent messages
  • Updated dependencies



Demo

Features:

  • It asks for ClickUp task ID associated with the commit
  • It asks for the type of change being made in the commit
  • It detects the ClickUp task ID from your branch name (provided we use type/id-description format)
  • It asks for the scope (vertical) relevant to the change


This tool is paired with another tool called Standard Version, which:

  • beautifully logs all commits of type features and fixes to changelog
  • auto-updates version of the package based on breaking change or feature releases
  • tags your commit with the version so releases can be sealed

Example changelog:

Changelog

Installing the command line tool

Commitizen is currently tested against node 10 and 12 although it may work in older node. You should also have npm 6 or greater.

npm install -g commitizen

Conventional commit messages as a global utility

Install our commitizen adapter @dubizzle/cz-conventional-changelog-for-any globally

npm install -g @dubizzle/cz-conventional-changelog-for-any

Create a .czrc file in your home directory, with path referring to the preferred, globally installed, commitizen adapter

echo '{ "path": "@dubizzle/cz-conventional-changelog-for-any" }' > ~/.czrc

Add the following configs to package.json

 "config": {
    "standard-version": {
      "issueUrlFormat": "https://app.clickup.com/t/{{id}}"
    }
  }
  "standard-version": {
    "issueUrlFormat": "https://app.clickup.com/t/{{id}}"
  }

Repo-scoped usage

You can also use install our commitizen adapter @dubizzle/cz-conventional-changelog-for-any locally

npm install @dubizzle/cz-conventional-changelog-for-any

Add the following configs to package.json

 "config": {
      "commitizen": {
      "path": "cz-conventional-changelog-for-any",
    },
    "standard-version": {
      "issueUrlFormat": "https://app.clickup.com/t/{{id}}"
    }
  }
  "standard-version": {
    "issueUrlFormat": "https://app.clickup.com/t/{{id}}"
  }


You are all set! Now cd into any git repository and simply use git cz, git-cz, or just cz instead of git commit when committing and you will find the commitizen prompt with the default configurations.

Protip: You can use all the git commit options with git cz, for example: git cz -a.