From 7c44b53436b79cf5e79cbca1307ef8615f053421 Mon Sep 17 00:00:00 2001 From: Wayne Sutton Date: Sun, 14 Dec 2025 11:48:02 -0800 Subject: [PATCH] fix: use npx for tsc and vite in build script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f35223c..97eff74 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "dev": "vite", "dev:convex": "convex dev", - "build": "tsc && vite build", + "build": "npx tsc && npx vite build", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", "sync": "npx tsx scripts/sync-posts.ts",