From 1e49e5f9a525f623178d9551f6ce1dd77a293f27 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Wed, 14 Jan 2026 04:41:47 +1000 Subject: [PATCH] fix: add playground vercel.json and fix build scripts - Add vercel.json for playground app to configure Vercel deployment - Add build:playground script to build playground and its dependencies - Fix build:web to use ... suffix for building dependencies first --- apps/playground/vercel.json | 5 +++++ package.json | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 apps/playground/vercel.json diff --git a/apps/playground/vercel.json b/apps/playground/vercel.json new file mode 100644 index 0000000..a660aaa --- /dev/null +++ b/apps/playground/vercel.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "buildCommand": "cd ../.. && pnpm -w run build:playground", + "installCommand": "pnpm install" +} diff --git a/package.json b/package.json index 2817faa..f871a6c 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,8 @@ "scripts": { "dev": "turbo dev", "build": "turbo build", - "build:web": "turbo run build --filter=@tpmjs/web", + "build:web": "turbo run build --filter=@tpmjs/web...", + "build:playground": "turbo run build --filter=@tpmjs/playground...", "test": "turbo test", "test:ui": "turbo test:ui", "lint": "turbo lint",