blob: baafe9c780854a9c6a882f72b673bea45daafbe1 (
plain) (
blame)
1
2
3
4
5
6
|
import { readFile } from 'fs/promises';
const changelogContent = await readFile('./CHANGELOG.md', 'utf-8');
const [, lastChangelog] = changelogContent.split(/^## .*$/gm);
console.log(lastChangelog.trim());
|