From 03c1e4edb83cfb1d610604466f3b41fbf6fef796 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Mon, 15 Jun 2026 01:23:51 +0700 Subject: [PATCH] fix(ci): add tailwindcss as direct dependency PostCSS plugin needs tailwindcss package available in node_modules at build time. Adding it as a direct dependency ensures consistent resolution. Co-Authored-By: Claude --- apps/web/package.json | 1 + bun.lock | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/web/package.json b/apps/web/package.json index 7180750..47705bf 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -22,6 +22,7 @@ "react-router-dom": "^7.15.1", "recharts": "3.8.1", "tailwind-merge": "^3.6.0", + "tailwindcss": "^4.3.1", "web-vitals": "5.3.0", "zustand": "^5.0.13" }, diff --git a/bun.lock b/bun.lock index 794859d..46f5d18 100644 --- a/bun.lock +++ b/bun.lock @@ -56,6 +56,7 @@ "react-router-dom": "^7.15.1", "recharts": "3.8.1", "tailwind-merge": "^3.6.0", + "tailwindcss": "^4.3.1", "web-vitals": "5.3.0", "zustand": "^5.0.13", },