From 51cd9741bdb97aca7a8ccc7ae7057b5d69cb2eb6 Mon Sep 17 00:00:00 2001 From: Ravi Suhag Date: Mon, 20 Apr 2026 17:28:25 -0500 Subject: [PATCH] fix: upgrade fumadocs-core and fumadocs-mdx for compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fumadocs-mdx@14.3.x imports `fumadocs-core/content/md/frontmatter` which was only added in fumadocs-core@16.8.0. The previous pin of fumadocs-core@16.6.15 causes ERR_MODULE_NOT_FOUND when npm resolves fumadocs-mdx to 14.3.x at install time (e.g. via npx). Upgrade both to compatible versions: - fumadocs-core: 16.6.15 → 16.8.1 - fumadocs-mdx: 14.2.6 → 14.3.1 --- packages/chronicle/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/chronicle/package.json b/packages/chronicle/package.json index 370defb..48b40e9 100644 --- a/packages/chronicle/package.json +++ b/packages/chronicle/package.json @@ -48,8 +48,8 @@ "class-variance-authority": "^0.7.1", "codemirror": "^6.0.2", "commander": "^14.0.2", - "fumadocs-core": "16.6.15", - "fumadocs-mdx": "14.2.6", + "fumadocs-core": "16.8.1", + "fumadocs-mdx": "14.3.1", "glob": "^11.0.0", "gray-matter": "^4.0.3", "h3": "^2.0.1-rc.16",