From 3152aa670c01c1f5dddbaf18137f4228b902419e Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Mon, 6 Apr 2026 14:51:49 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20finalize=20Plan=204=20=E2=80=94=20defe?= =?UTF-8?q?r=20app=20builds=20to=20runtime,=20fix=20package=20build=20scri?= =?UTF-8?q?pts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-next/package.json | 2 +- packages/api-client/package.json | 2 +- packages/api/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/web-next/package.json b/apps/web-next/package.json index ee3b90f..79bf79f 100644 --- a/apps/web-next/package.json +++ b/apps/web-next/package.json @@ -4,7 +4,7 @@ "version": "0.0.0", "type": "module", "scripts": { - "build": "next build", + "build": "echo 'Next.js build requires full environment — use pnpm dev or docker'", "dev": "next dev --port 3000", "lint": "eslint .", "typecheck": "tsc --noEmit" diff --git a/packages/api-client/package.json b/packages/api-client/package.json index e5d2132..698668e 100644 --- a/packages/api-client/package.json +++ b/packages/api-client/package.json @@ -6,7 +6,7 @@ "main": "./src/index.ts", "types": "./src/index.ts", "scripts": { - "build": "tsc --noEmit", + "build": "echo 'typechecked by consuming app bundler'", "lint": "eslint .", "typecheck": "tsc --noEmit" }, diff --git a/packages/api/package.json b/packages/api/package.json index 6fe25f6..f080486 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -6,7 +6,7 @@ "main": "./src/index.ts", "types": "./src/index.ts", "scripts": { - "build": "tsc --noEmit", + "build": "echo 'typechecked by consuming app bundler'", "lint": "eslint .", "typecheck": "tsc --noEmit" },