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

lerna-changelog-label-schema

v4.0.0

Published

Label schema definition for lerna-changelog

Readme

:label: lerna-changelog-label-schema

npm

Label schema definition for lerna-changelog

:notebook: Label Schema

| Emojis | Category | Label Display | Preset: default | Preset: full | Description | |-----------------------------|---------------|-----------------------|----------------------|----------------------|-----------------------------------------------------------| | :star: | Feature | Type: Feature | :white_check_mark: | :white_check_mark: | Includes new features | | :bug: | Bug | Type: Bug | :white_check_mark: | :white_check_mark: | Bug or Bug fixes | | :lock: | Security | Type: Security | :white_check_mark: | :white_check_mark: | Security fixes | | :chart_with_upwards_trend: | Performance | Type: Performance | :white_check_mark: | :white_check_mark: | Includes performance fixes | | :zap: | Improvement | Type: Improvement | :white_check_mark: | :white_check_mark: | Includes backwards-compatible fixes | | :boom: | Breaking | Type: Breaking | :white_check_mark: | :white_check_mark: | Includes backwards-incompatible fixes | | :warning: | Deprecated | Type: Deprecated | :white_check_mark: | :white_check_mark: | Includes deprecate fixes | | :globe_with_meridians: | I18n | Type: I18n | :white_check_mark: | :white_check_mark: | An internationalization fixes | | :wheelchair: | A11y | Type: A11y | :white_check_mark: | :white_check_mark: | An accessibility fixes | | :pencil: | Documentation | Type: Documentation | :white_check_mark: | :white_check_mark: | A documetation fixes | | :shirt: | Refactoring | Type: Refactoring | | :white_check_mark: | A code change that neither fixes a bug nor adds a feature | | :white_check_mark: | Testing | Type: Testing | | :white_check_mark: | Adding missing tests or correcting existing tests | | :wrench: | Maintenance | Type: Maintenance | | :white_check_mark: | Repository Maintenance | | :lollipop: | Example | Type: Example | | :white_check_mark: | Includes example and demo code fixes | | :pushpin: | Dependency | Type: Dependency | | :white_check_mark: | Dependencies fixes | | :package: | Build | Type: Build | | :white_check_mark: | A packaging or a building fixes |

You can use the preset as default or full. In about setup, look up the following CLI section.

:star: CLI

You can setup lerna-changelog labels to package.json with CLI.

:cd: Instllation

npm:

$ npm install -g lerna-changelog-label-schema

yarn:

$ yarn global add lerna-changelog-label-schema

:rocket: Usages


  Label schema definition for lerna-changelog

  Usage
    $ lerna-changelog-label-schema <command> [options]

  Commands:
    define, d      define lerna-changelog labels in your package.json 
    generate, g    generate lerna-changelog labels for GitHub labels, output for stdout
    version, v     show the version

  Options:
    --preset, -p   Label schema preset option, for define and generate command. 'default' or 'full', default: 'default'
    --output, -o   Output option, for generate command. if specified, stdout is suppressed.

  Examples:
    $ lerna-changelog-label-schema define --preset=full
    $ lerna-changelog-label-schema generate --preset=default

e.g. define command

$ cd /path/to/project
$ lerna-changelog-label-schema define --preset=full
apply lerna-changelog label schema 'full' to package.json

:scroll: Changelog

Details changes for each release are documented in the CHANGELOG.md.

:copyright: License

MIT