changes-since

1.1.8 • Public • Published

npm CircleCIdownloads GitHub issuesConventional Commits

Filter your CHANGELOG to view/format changes since a specific version. Uses chast to parse the changelog.

CLI

Install

For CLI:

yarn global add change-since

Usage

> cd /path/with/changelog
 
> changes-since 1.0.0
### Bug Fixes 
 
* added std-version 
* added tests & build business 
* deleted old changelog 
 
### Features 
 
* first version, based on changelog-parser 

API

Install

yarn add changes-since

Usage:

import changesSince, {format} from 'changes-since';
 
const changeLog = "# Change Log ...";
 
const filtered = changesSince(changeLog, {since: "1.0.0"}); //returns a chast object
 
console.log(format(ast)); //will log a formatted representation of all the changes (grouped together) 
 

Dependencies (7)

Dev Dependencies (6)

Package Sidebar

Install

npm i changes-since

Weekly Downloads

2

Version

1.1.8

License

ISC

Unpacked Size

200 kB

Total Files

9

Last publish

Collaborators

  • benmonro