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

@bonvoy/plugin-conventional

v0.12.1

Published

🚒 Conventional commits plugin for bonvoy

Readme

@bonvoy/plugin-conventional 🚒

Conventional commits plugin for bonvoy

Analyzes conventional commit messages to automatically determine semantic version bumps for your packages.

Features

  • βœ… Robust Parsing - Uses conventional-commits-parser
  • πŸ’₯ Breaking Changes - Supports feat!: syntax and BREAKING CHANGE: footer
  • πŸŽ›οΈ Configurable Presets - Angular, Conventional, Atom, or custom
  • πŸ“¦ Monorepo Ready - Per-package commit filtering
  • πŸ›‘οΈ Graceful Fallbacks - Handles malformed commits without crashing

Installation

npm install @bonvoy/plugin-conventional

This plugin is included by default in bonvoy, so you typically don't need to install it separately.

Usage

Default Configuration

The plugin works out of the box with the Angular preset:

// bonvoy.config.js
export default {
  plugins: [
    '@bonvoy/plugin-conventional', // Uses Angular preset by default
  ],
};

Custom Configuration

// bonvoy.config.js
export default {
  plugins: [
    ['@bonvoy/plugin-conventional', {
      preset: 'conventional', // 'angular' | 'conventional' | 'atom' | 'custom'
      types: {
        // Only used when preset: 'custom'
        feat: 'minor',
        fix: 'patch',
        breaking: 'major',
        perf: 'patch',
      }
    }]
  ],
};

Supported Commit Types

Angular Preset (default)

| Type | Bump | Example | |------|------|---------| | feat | minor | feat: add new API endpoint | | fix | patch | fix: resolve memory leak | | perf | patch | perf: optimize database queries | | feat! | major | feat!: remove deprecated API | | BREAKING CHANGE | major | Any commit with BREAKING CHANGE: in body |

Breaking Changes

Breaking changes can be indicated in two ways:

  1. Exclamation mark: feat!: remove old API
  2. Footer: Any commit with BREAKING CHANGE: in the body
feat: add new authentication system

BREAKING CHANGE: The old auth API has been removed. 
Use the new `authenticate()` method instead.

Examples

Commits that trigger releases:

git commit -m "feat: add user authentication"     # β†’ minor bump
git commit -m "fix: resolve login bug"            # β†’ patch bump  
git commit -m "feat!: remove legacy API"          # β†’ major bump
git commit -m "perf: optimize queries"            # β†’ patch bump

Commits that DON'T trigger releases:

git commit -m "docs: update README"               # β†’ no bump
git commit -m "chore: update dependencies"        # β†’ no bump
git commit -m "style: fix formatting"             # β†’ no bump
git commit -m "test: add unit tests"              # β†’ no bump

Presets

Angular (default)

  • feat β†’ minor
  • fix β†’ patch
  • perf β†’ patch

Conventional

  • feat β†’ minor
  • fix β†’ patch
  • perf β†’ patch

Atom

  • :sparkles: β†’ minor
  • :bug: β†’ patch
  • :racehorse: β†’ patch

Custom

Define your own commit types and their corresponding bumps.

Monorepo Support

The plugin automatically filters commits based on the files they modify, ensuring each package only gets bumped for relevant changes.

# This commit only affects @myorg/core
git commit -m "feat(core): add new feature" packages/core/src/feature.ts

# This commit affects both packages
git commit -m "feat: add shared utility" packages/core/src/util.ts packages/cli/src/util.ts

API

import ConventionalPlugin from '@bonvoy/plugin-conventional';

interface ConventionalConfig {
  preset?: 'angular' | 'conventional' | 'atom' | 'custom';
  types?: Record<string, SemverBump>;
}

const plugin = new ConventionalPlugin({
  preset: 'angular',
  types: {
    feat: 'minor',
    fix: 'patch',
  }
});

License

MIT