From 0a2d5653e487b8f5498ef73c781f6fe03319ff25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=7BAI=7Df=20D=2E=20M=C3=BCller?= Date: Mon, 9 Mar 2026 11:49:47 +0100 Subject: [PATCH] fix: add changelog to pre-rendered docs build The changelog page failed to load on the deployed site because render-docs.js was not generating docs/changelog.html. Co-Authored-By: Claude Opus 4.6 --- scripts/render-docs.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/render-docs.js b/scripts/render-docs.js index 3c434ba..0c217b3 100644 --- a/scripts/render-docs.js +++ b/scripts/render-docs.js @@ -11,6 +11,7 @@ * website/public/docs/about.de.html (if source exists) * website/public/CONTRIBUTING.html * website/public/CONTRIBUTING.de.html (if source exists) + * website/public/docs/changelog.html * website/public/docs/all-anchors.html * * Usage: node scripts/render-docs.js @@ -61,5 +62,7 @@ renderFile(path.join(ROOT, 'docs/about.de.adoc'), path.join(WEB_DOCS, 'about.de. renderFile(path.join(ROOT, 'CONTRIBUTING.adoc'), path.join(WEB_PUBLIC, 'CONTRIBUTING.html')) renderFile(path.join(ROOT, 'CONTRIBUTING.de.adoc'), path.join(WEB_PUBLIC, 'CONTRIBUTING.de.html')) +renderFile(path.join(ROOT, 'docs/changelog.adoc'), path.join(WEB_DOCS, 'changelog.html')) + // all-anchors.adoc uses include:: directives — resolved automatically in Node.js renderFile(path.join(ROOT, 'docs/all-anchors.adoc'), path.join(WEB_DOCS, 'all-anchors.html'))