Optimize build script and remove unused dependencies.

Updated the `build` script in `package.json` to invoke `server:build` instead of `worker:build`. Removed redundant dependencies from `bun.lock` to clean up the project and reduce package bloat.
This commit is contained in:
geoffsee
2025-05-27 14:54:34 -04:00
committed by Geoff Seemueller
parent 2ed0c5e280
commit 139b6e4d58
3 changed files with 3 additions and 1286 deletions

View File

@@ -2,7 +2,7 @@
"type": "module",
"scripts": {
"clean": "rm -rf node_modules && rm -rf .wrangler && rm -rf dist",
"build": "pnpm client:build && pnpm worker:build",
"build": "pnpm client:build && pnpm server:build",
"client:dev": "pnpm vite dev --host 0.0.0.0",
"server:dev": "pnpm run build && pnpm wrangler dev",
"client": "pnpm client:dev",