standard-changelog
Generate a changelog from git metadata with Angular commit convention.
Last updated a year ago by dangreen .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install standard-changelog 
SYNC missed versions from official npm registry.

standard-changelog

ESM-only package NPM version Node version Dependencies status Install size Build status Coverage status

An opinionated approach to CHANGELOG generation using angular commit conventions.


Install   •   Usage   •   JS API

Install

# pnpm
pnpm add standard-changelog
# yarn
yarn add standard-changelog
# npm
npm i standard-changelog

Usage

standard-changelog

The above generates a changelog based on commits since the last semver tag that match the pattern of a "Feature", "Fix", "Performance Improvement" or "Breaking Changes".

your first release:

If you're using this tool for the first time and want to generate new content in CHANGELOG.md, you can run:

standard-changelog --first-release

advanced topics:

All available command line parameters can be listed using CLI: standard-changelog --help.

JS API

import { StandardChangelog } from 'standard-changelog'

const generator = new StandardChangelog()
  .readPackage()

generator
  .writeStream()
  .pipe(process.stdout)

// or

for await (const chunk of generator.write()) {
  console.log(chunk)
}

StandardChangelog is a class based on ConventionalChangelog and with preloaded angular preset.

See the conventional-changelog JS API docs.

License

MIT

Current Tags

  • 7.0.1                                ...           latest (a year ago)
  • 2.0.27                                ...           next (5 years ago)

53 Versions

  • 7.0.1                                ...           a year ago
  • 7.0.0                                ...           a year ago
  • 6.0.0                                ...           2 years ago
  • 5.0.0                                ...           3 years ago
  • 4.0.0                                ...           3 years ago
  • 3.0.0                                ...           3 years ago
  • 2.0.27                                ...           5 years ago
  • 2.0.26                                ...           6 years ago
  • 2.0.25                                ...           6 years ago
  • 2.0.24                                ...           6 years ago
  • 2.0.23                                ...           6 years ago
  • 2.0.22                                ...           6 years ago
  • 2.0.21                                ...           6 years ago
  • 2.0.20                                ...           6 years ago
  • 2.0.19                                ...           6 years ago
  • 2.0.18                                ...           6 years ago
  • 2.0.17                                ...           6 years ago
  • 2.0.16                                ...           6 years ago
  • 2.0.15                                ...           7 years ago
  • 2.0.13                                ...           7 years ago
  • 2.0.12                                ...           7 years ago
  • 2.0.11                                ...           7 years ago
  • 2.0.10                                ...           7 years ago
  • 2.0.9                                ...           7 years ago
  • 2.0.7                                ...           7 years ago
  • 2.0.6                                ...           7 years ago
  • 2.0.5                                ...           7 years ago
  • 2.0.4                                ...           7 years ago
  • 2.0.3                                ...           7 years ago
  • 2.0.1                                ...           8 years ago
  • 2.0.0                                ...           8 years ago
  • 1.0.19                                ...           8 years ago
  • 1.0.18                                ...           8 years ago
  • 1.0.17                                ...           8 years ago
  • 1.0.16                                ...           8 years ago
  • 1.0.15                                ...           8 years ago
  • 1.0.14                                ...           8 years ago
  • 1.0.13                                ...           8 years ago
  • 1.0.12                                ...           8 years ago
  • 1.0.11                                ...           8 years ago
  • 1.0.9                                ...           8 years ago
  • 1.0.8                                ...           8 years ago
  • 1.0.7                                ...           8 years ago
  • 1.0.6                                ...           8 years ago
  • 1.0.5                                ...           8 years ago
  • 1.0.4                                ...           9 years ago
  • 1.0.3                                ...           9 years ago
  • 1.0.2                                ...           9 years ago
  • 1.0.1                                ...           9 years ago
  • 1.0.0                                ...           9 years ago
  • 0.0.2                                ...           9 years ago
  • 0.0.1                                ...           10 years ago
  • 0.0.0                                ...           10 years ago
Downloads
Today 14
This Week 15
This Month 15
Last Day 1
Last Week 0
Last Month 27
Dev Dependencies (0)
None
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |