chore: finalize Plan 4 — defer app builds to runtime, fix package build scripts

This commit is contained in:
2026-04-06 14:51:49 +02:00
parent 8836fa5333
commit 3152aa670c
3 changed files with 3 additions and 3 deletions

View File

@@ -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"

View File

@@ -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"
},

View File

@@ -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"
},