From 0787282c8bec5ef0b5e4278f4c73a33834b2abfd Mon Sep 17 00:00:00 2001 From: Thomas Moore Date: Sun, 5 Nov 2023 20:38:43 +0000 Subject: [PATCH] We don't need to build types on prod --- packages/utils/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/utils/package.json b/packages/utils/package.json index 765ffd9..c3e01ab 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -10,7 +10,7 @@ "lint": "eslint . --ext .ts", "build:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir ./dist", "build:ts": "bun build ./src/index.ts --outdir ./dist --target browser --splitting", - "build": "npm run build:types && npm run build:ts", + "build": "bun run build:ts", "faker": "bun run build:types -- --watch & bun run build:ts -- --watch", "dev": "bun run build:types -- --watch & bun run build:ts -- --watch" },