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 πŸ™

Β© 2024 – Pkg Stats / Ryan Hefner

@ronnieacs/cz-conventional-commit

v5.0.3

Published

Commitizen adapter following the conventional-changelog format, with emojis. πŸŽ‰. Forked from https://github.com/pvdlg/cz-conventional-commit

Downloads

9

Readme

cz-conventional-commit

commitizen adapter following the conventional-changelog format, with emojis and additionnal commit types (aliases).

Travis Codecov Greenkeeper badge license

Screenshot

Install as a global utility

npm install --global commitizen @ronnieacs/cz-conventional-commit

Create a .czrc file in your home directory, with the following content:

{
  "path": "@ronnieacs/cz-conventional-commit",
  "cz-conventional-commit": {
    "maxSubjectLength": 72,
    "bodyLineLength": 100
  }
}

Now cd into any git repository and use git cz instead of git commit and you will find the commitizen prompt.

See commitizen documentation for more informations.

Making your repo Commitizen-friendly

npm install --save-dev commitizen @ronnieacs/cz-conventional-commit
./node_modules/.bin/commitizen init @ronnieacs/cz-conventional-commit --save-dev

You can customize cz-conventional-commit in package.json:

...
"config": {
  "commitizen": {
    "path": "@ronnieacs/cz-conventional-commit",
    "cz-conventional-commit": {
      "maxSubjectLength": 72,
      "bodyLineLength": 100,
      "emoji": true
    }
  }
}
...

See commitizen documentation for more informations.

Options

| Option | Description | Default | | ------------------ | ------------------------------------------------------------------------------------------ | ------- | | maxSubjectLength | Length at which to truncate the commit head (head includes type, scope, subject and emoji) | 72 | | bodyLineLength | Length at which to wrap body lines | 100 | | emoji | To add and emoji at the end of the commit message | false |

Commit types

| Commit Type | Title | Description | Emoji | |-------------|--------------------------|-------------------------------------------------------------------------------------------------------------|:-----:| | feat | Features | A new feature | ✨ | | fix | Bug Fixes | A bug Fix | πŸ› | | docs | Documentation | Documentation only changes | πŸ“š | | style | Styles | Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc) | πŸ’Ž | | refactor | Code Refactoring | A code change that neither fixes a bug nor adds a feature | πŸ“¦ | | perf | Performance Improvements | A code change that improves performance | πŸš€ | | test | Tests | Adding missing tests or correcting existing tests | 🚨 | | build | Builds | Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm) | πŸ›  | | ci | Continuous Integrations | Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs) | βš™οΈ | | chore | Chores | Other changes that don't modify src or test files | ♻️ | | revert | Reverts | Reverts a previous commit | πŸ—‘ |

Commit aliases

Aliases are additionnal commit types that will be formatted to follow AngularJS Commit Message Conventions and automatically set some fields.

For example when choosing initial, cz-conventional-commit will automatically set:

  • the standard type to feat
  • the scope to empty
  • the subject to 'Initial commit πŸŽ‰'
  • the issues to empty
  • the breaking to empty

The commit message will be feat: Initial commit πŸŽ‰.

| Commit Type | Type | Scope (default) | Subject (default) | Emoji | |--------------------|---------|-----------------|-------------------|:-----:| | initial | feat | empty | Initial commit | πŸŽ‰ | | dependencies | fix | package | - | ⏫ | | peerDependencies | fix | package | - | ⬆️ | | devDependencies | chore | package | - | πŸ”Ό | | metadata | fix | package | - | πŸ“¦ |

Related