it-tools/scripts/getLatestChangelog.mjs

7 lines
208 B
JavaScript
Raw Normal View History

import { readFile } from 'fs/promises';
const changelogContent = await readFile('./CHANGELOG.md', 'utf-8');
const [, lastChangelog] = changelogContent.split(/^## .*$/gm);
console.log(lastChangelog.trim());