From bfc20ac293f4d4edc75b7ea6e6f7b16a287e5ed6 Mon Sep 17 00:00:00 2001 From: ianshaloom Date: Sun, 8 Mar 2026 10:55:16 +0300 Subject: [PATCH] fix(deps): add tailwind-merge to root package.json as direct dependency turbo prune storefront --docker excludes admin, so tailwind-merge was not installed at root in Docker (it was only hoisted because of admin's dep). @heroui/styles/node_modules/tailwind-variants requires tailwind-merge >=3.0.0 and walks up to root to find it. Adding it as a root-level dep ensures npm ci always installs it regardless of which workspace is being built. Co-Authored-By: Claude Sonnet 4.6 --- package-lock.json | 1 + package.json | 1 + 2 files changed, 2 insertions(+) diff --git a/package-lock.json b/package-lock.json index 357bf80..61b2cea 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,6 +21,7 @@ "react-dom": "^19.2.4", "stripe": "^20.4.0", "svix": "^1.86.0", + "tailwind-merge": "^3.4.0", "tailwindcss": "^4.2.0" }, "devDependencies": { diff --git a/package.json b/package.json index 39c6331..e20e843 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "react-dom": "^19.2.4", "stripe": "^20.4.0", "svix": "^1.86.0", + "tailwind-merge": "^3.4.0", "tailwindcss": "^4.2.0" }, "devDependencies": {