From 73afdf43284eb2fa77d298fe5d85f75ee9c5d1b8 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Sat, 20 Dec 2025 16:05:58 +0700 Subject: [PATCH] Update build script in package.json to use 'bunx tsc' for TypeScript compilation, enhancing build process consistency. --- src/Managing.Web3Proxy/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Managing.Web3Proxy/package.json b/src/Managing.Web3Proxy/package.json index aeacfaae..57db1a2d 100644 --- a/src/Managing.Web3Proxy/package.json +++ b/src/Managing.Web3Proxy/package.json @@ -9,7 +9,7 @@ }, "scripts": { "start": "fastify start -l info dist/app.js", - "build": "tsc", + "build": "bunx tsc", "watch": "tsc -w", "dev": "bun run build && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"bun:watch\" \"bun:dev:start\"", "dev:start": "bun run build && fastify start -d --ignore-watch=.ts$ -w -l info -P dist/app.js",