From bf53e8290fbef2f36b7768f8c1d7acd203ce48d9 Mon Sep 17 00:00:00 2001 From: Robert Allen Date: Tue, 30 Jun 2026 15:10:56 -0400 Subject: [PATCH] fix(deps): override starlight-llms-txt astro peer to $astro for Astro 7 The catalog site is on astro@7.0.4 but starlight-llms-txt@0.10.0 only peers astro@^6, so npm ci ERESOLVEs and the Pages deploy build fails. Add the same overrides.starlight-llms-txt.astro = $astro pin the MIF and research-harness- template sites use, so the resolver accepts the installed Astro 7. --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b3b6dae..7786773 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,10 @@ "astro-mermaid": "2.1.0" }, "overrides": { - "esbuild": "0.28.1" + "esbuild": "0.28.1", + "starlight-llms-txt": { + "astro": "$astro" + } }, "allowScripts": { "esbuild@0.28.1": true,