fix(deps): add tailwind-merge to root package.json as direct dependency
Some checks failed
Deploy — Staging / Build & push — admin (push) Has been cancelled
Deploy — Staging / Build & push — storefront (push) Has been cancelled
Deploy — Staging / Deploy to staging VPS (push) Has been cancelled
Deploy — Staging / Lint, Typecheck & Test (push) Has been cancelled

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 <noreply@anthropic.com>
This commit is contained in:
2026-03-08 10:55:16 +03:00
parent 33fed9382a
commit bfc20ac293
2 changed files with 2 additions and 0 deletions

1
package-lock.json generated
View File

@@ -21,6 +21,7 @@
"react-dom": "^19.2.4", "react-dom": "^19.2.4",
"stripe": "^20.4.0", "stripe": "^20.4.0",
"svix": "^1.86.0", "svix": "^1.86.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.2.0" "tailwindcss": "^4.2.0"
}, },
"devDependencies": { "devDependencies": {

View File

@@ -30,6 +30,7 @@
"react-dom": "^19.2.4", "react-dom": "^19.2.4",
"stripe": "^20.4.0", "stripe": "^20.4.0",
"svix": "^1.86.0", "svix": "^1.86.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.2.0" "tailwindcss": "^4.2.0"
}, },
"devDependencies": { "devDependencies": {