From 1c7949bf365aa76a40a7be89c1b262b0f4ad2a8e Mon Sep 17 00:00:00 2001 From: athakur959-cloud Date: Sun, 26 Jul 2026 17:39:28 +0530 Subject: [PATCH] Update package.json scripts for build process Removed old scripts and added new build and CSS build scripts. --- package.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 970bd7c..7d520d9 100644 --- a/package.json +++ b/package.json @@ -8,9 +8,7 @@ "server" ], "scripts": { - "dev:app": "npm run dev -w client", - "build:app": "npm run build -w client", - "build:lib": "npm run build -w packages/design-agent", - "install:all": "npm install" - } + "build": "npm run build:css && babel src --out-dir dist --extensions .js,.jsx", + "build:css": "npx tailwindcss -i ./src/tailwind.css -o ./dist/tailwind.css --minify" } + }