From 19884af03eb91b49300bc641fe545b1d64a917cb Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Sat, 3 Jan 2026 14:18:28 +1000 Subject: [PATCH] fix: add build:web script to only build web and dependencies for Vercel --- apps/web/vercel.json | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/vercel.json b/apps/web/vercel.json index 0cc0ed0..c97307c 100644 --- a/apps/web/vercel.json +++ b/apps/web/vercel.json @@ -1,5 +1,5 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", - "buildCommand": "cd ../.. && pnpm install && turbo run build --filter=@tpmjs/web", + "buildCommand": "cd ../.. && pnpm run build:web", "installCommand": "cd ../.. && pnpm install" } diff --git a/package.json b/package.json index e54ac7e..3b13f39 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "scripts": { "dev": "turbo dev", "build": "turbo build", + "build:web": "turbo run build --filter=@tpmjs/web", "test": "turbo test", "test:ui": "turbo test:ui", "lint": "turbo lint",