@jayree/changelog
v1.2.4
Published
Parse a CHANGELOG.md file of a package and return the most recent entry
Downloads
5,343
Readme
@jayree/changelog
Parse a CHANGELOG.md file of a package and return the most recent entry.
Install
npm install @jayree/changelog
Usage
import { join, dirname } from 'node:path';
import { fileURLToPath } from 'node:url';
import printChangeLog from '@jayree/changelog';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const pathToChangeLog = join(__dirname, '..', '..');
const cacheDir = this.config.cacheDir;
console.log(printChangeLog(cacheDir, pathToChangeLog));