From d7c0c693fdfee7c0fabe92919cd50d96e24337f2 Mon Sep 17 00:00:00 2001 From: John Yeo Date: Fri, 10 Oct 2025 09:25:18 +0100 Subject: [PATCH] chore: fix shared package.json scripts --- shared/package.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/shared/package.json b/shared/package.json index a12b51088..4ef1b6d02 100644 --- a/shared/package.json +++ b/shared/package.json @@ -13,13 +13,9 @@ "author": "Recase Inc.", "license": "Apache-2.0", "scripts": { - "tsc": "tsc", "api": "bun api/openapi.ts", - "build": "bun build ./index.ts --outdir dist --format esm --target bun --external zod", - "dev": "bunx nodemon --ext ts --ignore dist --exec \"tsc --emitDeclarationOnly --outDir dist && bun run build:fast\"", - "dev:dts": "tsc --emitDeclarationOnly --outDir dist --project tsconfig.json", - "build:fast": "bun build ./index.ts --outdir dist --format esm --target bun --external zod", - "dev:bun": "bun ./index.ts --outdir dist --target bun --external zod --watch", + "build": "tsc --emitDeclarationOnly --outDir dist && bun build ./index.ts --outdir dist --format esm --target bun --external zod", + "dev": "bunx nodemon --ext ts --ignore dist --exec \"tsc --emitDeclarationOnly --outDir dist && bun build ./index.ts --outdir dist --format esm --target bun --external zod\"", "db:push": "bun db:generate && bun db:migrate", "db:generate": "cross-env NODE_OPTIONS=\"--import tsx\" bunx drizzle-kit generate --config drizzle.config.ts", "db:migrate": "cross-env NODE_OPTIONS=\"--import tsx\" bunx drizzle-kit migrate --config drizzle.config.ts",