mirror of
https://github.com/maputnik/editor.git
synced 2025-12-07 14:50:02 +00:00
It's apparently forced now to use the eslint.config.js instead of .eslintrc It got more strict with requiring the underscore on unused vars like `catch(_err)` , but that was all Closes #1012 Closes #995 Closes #992 ## Launch Checklist <!-- Thanks for the PR! Feel free to add or remove items from the checklist. --> - [ ] Briefly describe the changes in this PR. - [ ] Link to related issues. - [ ] Include before/after visuals or gifs if this PR includes visual changes. - [ ] Write tests for all new functionality. - [ ] Add an entry to `CHANGELOG.md` under the `## main` section.
48 lines
1.4 KiB
JavaScript
Executable File
48 lines
1.4 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// Copied from maplibre/maplibre-gl-js
|
|
// https://github.com/maplibre/maplibre-gl-js/blob/bc70bc559cea5c987fa1b79fd44766cef68bbe28/build/release-notes.js
|
|
|
|
import * as fs from 'fs';
|
|
|
|
const changelogPath = 'CHANGELOG.md';
|
|
const changelog = fs.readFileSync(changelogPath, 'utf8');
|
|
|
|
/*
|
|
Parse the raw changelog text and split it into individual releases.
|
|
|
|
This regular expression:
|
|
- Matches lines starting with "## x.x.x".
|
|
- Groups the version number.
|
|
- Skips the (optional) release date.
|
|
- Groups the changelog content.
|
|
- Ends when another "## x.x.x" is found.
|
|
*/
|
|
const regex = /^## (\d+\.\d+\.\d+.*?)\n(.+?)(?=\n^## \d+\.\d+\.\d+.*?\n)/gms;
|
|
|
|
const releaseNotes = [];
|
|
let match;
|
|
// eslint-disable-next-line no-cond-assign
|
|
while (match = regex.exec(changelog)) {
|
|
releaseNotes.push({
|
|
'version': match[1],
|
|
'changelog': match[2].trim(),
|
|
});
|
|
}
|
|
|
|
const latest = releaseNotes[0];
|
|
const previous = releaseNotes[1];
|
|
|
|
// Print the release notes template.
|
|
|
|
let header = 'Changes since previous version'
|
|
if (previous) {
|
|
header = `https://github.com/maplibre/maputnik
|
|
[Changes](https://github.com/maplibre/maputnik/compare/v${previous.version}...v${latest.version}) since [Maputnik v${previous.version}](https://github.com/maplibre/maputnik/releases/tag/v${previous.version})`
|
|
}
|
|
const templatedReleaseNotes = `${header}
|
|
|
|
${latest.changelog}`;
|
|
|
|
process.stdout.write(templatedReleaseNotes.trimEnd());
|