From 5fd08318d1bc92e61e909f6b57bb321c999e48dd Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Aug 2026 09:41:09 +0000 Subject: [PATCH] fix(docs): rename apps/docs's start script to match its own convention MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pnpm docs:start has never worked (both lines landed in 159e29944, 2026-08-15): the root delegate calls `pnpm --filter @objectstack/docs start`, but apps/docs declared `site:start` instead. Determination: the app's script name is the outlier, not the root delegate. apps/docs/README.md already documents `pnpm start` (not `pnpm site:start`) as the local equivalent of `pnpm docs:start`, right alongside `pnpm dev`/`pnpm build` — which the root's already-working `docs:dev`/`docs:build` delegates map onto verbatim. No other file in the repo (workflows, vercel.json, scripts) references `site:start`, so renaming it is safe. The root package.json needs no change: `docs:start` was already correctly named. Fixes #9086 --- apps/docs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/package.json b/apps/docs/package.json index e4cd3cc0ff..b5be422beb 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -7,7 +7,7 @@ "scripts": { "dev": "next dev", "build": "pnpm --filter @objectstack/spec gen:schema && pnpm --filter @objectstack/spec gen:docs && NODE_OPTIONS='--max-old-space-size=4096' next build", - "site:start": "next start", + "start": "next start", "site:lint": "next lint", "types:check": "fumadocs-mdx && next typegen && tsc --noEmit", "postinstall": "fumadocs-mdx",