JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q46987F
  • License ISC

Command line generation of a Semantic Versioning based change log

Package Exports

  • change-log

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (change-log) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

change-log

Command line generation of a Semantic Versioning based change log.

This project is still in the early stages of development, so it is still rough around the edges, with more features to come. For example, the tool intelligence is currently low, so be careful removing sections created by change-log init, especially under the Unreleased section.

Example

See the change log for this project for an example of the format

Help

View a list of command arguments and options

change-log

Initialize

Create a new CHANGELOG.md file. The name is taken from package.json if it exists, and from the folder name if it does not.

change-log init

Major

Add an entry under Major in the Unreleased section.

change-log major "What was changed"

Minor

Add an entry under Minor in the Unreleased section.

change-log minor "What was added"

Patch

Add an entry under Patch in the Unreleased section.

change-log patch "What was fixed"

Release

Marks the unreleased section as a release:

  • Calculates the SemVer based on the previous release in the change log and on unreleased Major, Minor and Patch entries.
  • Adds a new empty unreleased section.
change-log release