chore: fixed generatereleasenotes to respect filename

This commit is contained in:
SamTV12345 2025-11-05 22:14:58 +01:00
parent 660d2b511e
commit 26369b8488

View file

@ -1,6 +1,6 @@
import {readFileSync} from "node:fs";
const changelog = readFileSync('../changelog.md')
const changelog = readFileSync('../CHANGELOG.md')
const changelogText = changelog.toString()
const changelogLines = changelogText.split('\n')