From de1f6dac1e5a25acf2b64439c104dcc35bbc4c7e Mon Sep 17 00:00:00 2001 From: Eason Liang Date: Sun, 14 Jun 2026 22:59:24 +0800 Subject: [PATCH 1/2] fix(pnpm): add postinstall dedupe to ensure @types/react override takes effect --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 7e21f8c881..99aed0f405 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "scripts": { "preinstall": "node scripts/bootstrap.mjs", "prepare": "husky", + "postinstall": "pnpm dedupe || true", "install": "node scripts/bootstrap.mjs", "install:all": "node scripts/bootstrap.mjs", "lint": "turbo lint --log-order grouped --output-logs new-only", From 657fa9ed0a241511303986a926dbb3da5f0f2bf6 Mon Sep 17 00:00:00 2001 From: Eason Liang Date: Sun, 14 Jun 2026 23:25:49 +0800 Subject: [PATCH 2/2] fix(pnpm): remove postinstall dedupe to prevent workspace cascade timeout --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 99aed0f405..7e21f8c881 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,6 @@ "scripts": { "preinstall": "node scripts/bootstrap.mjs", "prepare": "husky", - "postinstall": "pnpm dedupe || true", "install": "node scripts/bootstrap.mjs", "install:all": "node scripts/bootstrap.mjs", "lint": "turbo lint --log-order grouped --output-logs new-only",