changes-since
v1.1.8
Published
[![npm][npm-img]][npm-url] [![CircleCI](https://img.shields.io/circleci/project/github/RedSparr0w/node-csgo-parser.svg)](https://circleci.com/gh/benmonro/changes-since)[![downloads][downloads-img]][npm-url] [![GitHub issues](https://img.shields.io/github/
Downloads
15
Readme
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)