From dd2d8d7eadb58942d4f3452e2ed66d5a7f699445 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Wed, 12 Nov 2025 22:42:31 -0700 Subject: [PATCH] fix: dependencies for Bun in `monorepo-next` (#8791) --- templates/monorepo-next/apps/web/package.json | 2 ++ templates/monorepo-next/packages/eslint-config/package.json | 1 + templates/monorepo-next/packages/ui/package.json | 1 + 3 files changed, 4 insertions(+) diff --git a/templates/monorepo-next/apps/web/package.json b/templates/monorepo-next/apps/web/package.json index ba78ea9de..6b3776ef9 100644 --- a/templates/monorepo-next/apps/web/package.json +++ b/templates/monorepo-next/apps/web/package.json @@ -20,11 +20,13 @@ "react-dom": "^19.1.1" }, "devDependencies": { + "@tailwindcss/postcss": "^4.1.11", "@types/node": "^20.19.9", "@types/react": "^19.1.9", "@types/react-dom": "^19.1.7", "@workspace/eslint-config": "workspace:^", "@workspace/typescript-config": "workspace:*", + "eslint": "^9.32.0", "typescript": "^5.9.2" } } diff --git a/templates/monorepo-next/packages/eslint-config/package.json b/templates/monorepo-next/packages/eslint-config/package.json index f627cd5b1..83faa8ca6 100644 --- a/templates/monorepo-next/packages/eslint-config/package.json +++ b/templates/monorepo-next/packages/eslint-config/package.json @@ -9,6 +9,7 @@ "./react-internal": "./react-internal.js" }, "devDependencies": { + "@eslint/js": "^9.39.1", "@next/eslint-plugin-next": "^15.4.5", "@typescript-eslint/eslint-plugin": "^8.39.0", "@typescript-eslint/parser": "^8.39.0", diff --git a/templates/monorepo-next/packages/ui/package.json b/templates/monorepo-next/packages/ui/package.json index 944ae93b6..d96128b5f 100644 --- a/templates/monorepo-next/packages/ui/package.json +++ b/templates/monorepo-next/packages/ui/package.json @@ -26,6 +26,7 @@ "@types/react-dom": "^19.1.7", "@workspace/eslint-config": "workspace:*", "@workspace/typescript-config": "workspace:*", + "eslint": "^9.32.0", "tailwindcss": "^4.1.11", "typescript": "^5.9.2" },