From 40de0ab7579c18b79c34a68eda5686372ef053e6 Mon Sep 17 00:00:00 2001 From: Christopher Harrison Date: Wed, 26 Aug 2026 09:33:26 -0700 Subject: [PATCH] fix: declare @astrojs/markdown-remark as explicit dependency Newer @astrojs/starlight and astro releases no longer install @astrojs/markdown-remark transitively, but website/astro.config.mjs uses markdown.remarkPlugins (for the GitHub-admonitions plugin), which requires the unified processor from that package. Declaring it explicitly unblocks astro/starlight dependency bumps that otherwise fail astro check. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- website/package-lock.json | 1 + website/package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/website/package-lock.json b/website/package-lock.json index 24f4e32..3e540a0 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -9,6 +9,7 @@ "version": "0.0.1", "dependencies": { "@astrojs/check": "^0.9.9", + "@astrojs/markdown-remark": "7.2.1", "@astrojs/starlight": "^0.41.4", "astro": "^7.0.9", "sharp": "^0.35.3", diff --git a/website/package.json b/website/package.json index 644a694..b1b4932 100644 --- a/website/package.json +++ b/website/package.json @@ -15,6 +15,7 @@ }, "dependencies": { "@astrojs/check": "^0.9.9", + "@astrojs/markdown-remark": "7.2.1", "@astrojs/starlight": "^0.41.4", "astro": "^7.0.9", "sharp": "^0.35.3",