From dd5a3db55ed9bca1f71398e6e584da2983a70bea Mon Sep 17 00:00:00 2001 From: Diego Rodrigues de Sa e Souza <8016841+diegosouzapw@users.noreply.github.com> Date: Wed, 17 Jun 2026 19:58:28 -0300 Subject: [PATCH] fix(docs): move DOCUMENTATION_OVERHAUL_PLAN out of the fumadocs guides collection (#4123) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A cycle-internal docs housekeeping commit (635350ebb) relocated this internal planning doc from docs/ root into docs/guides/, which `source.config.ts` globs into the published fumadocs `docs` collection. The file has no frontmatter, so `next build` (build:cli / Docker / Electron) failed to compile it: `[MDX] invalid frontmatter … title: expected string, received undefined`, breaking ALL three release-build fragments (npm/Docker/Electron) at release time. Moving it back to docs/ root (which is NOT globbed by the collection) restores the pre-cycle state and matches the documented intent — DOCUMENTATION_AUDIT_REPORT lists it among docs/-root files that should never be published to the site. Verified locally: `npm run build:cli` now completes green. No inbound links. --- docs/{guides => }/DOCUMENTATION_OVERHAUL_PLAN.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/{guides => }/DOCUMENTATION_OVERHAUL_PLAN.md (100%) diff --git a/docs/guides/DOCUMENTATION_OVERHAUL_PLAN.md b/docs/DOCUMENTATION_OVERHAUL_PLAN.md similarity index 100% rename from docs/guides/DOCUMENTATION_OVERHAUL_PLAN.md rename to docs/DOCUMENTATION_OVERHAUL_PLAN.md