From 8f57fdc60aefec2e1040552adecf0312c322fd9f Mon Sep 17 00:00:00 2001 From: Kevin Hill <107003416+khill-fbmc@users.noreply.github.com> Date: Fri, 4 Apr 2025 09:27:11 -0700 Subject: [PATCH] Update package.json I believe this is what I added to fix the build issue with docker. #33 Newer versions of pnpm don't run post install scripts by default. You have to whitelist them. --- package.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package.json b/package.json index 1876a3b..f3cc388 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,15 @@ "prisma": { "seed": "tsx prisma/seed.ts" }, + "pnpm": { + "onlyBuiltDependencies": [ + "@prisma/client", + "@prisma/engines", + "esbuild", + "prisma", + "sqlite3" + ] + }, "dependencies": { "@ai-sdk/amazon-bedrock": "^0.0.17", "@ai-sdk/anthropic": "^0.0.46",