From b81180078d2aa4dfb83548ebb43cd7c6cb1fb885 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Tue, 19 Aug 2025 13:10:42 +0000 Subject: [PATCH] fix: resolve type conflicts by overriding @roo-code/types to use workspace version The type errors were caused by @roo-code/cloud package importing an external version of @roo-code/types (^1.52.0) which conflicted with the local workspace version. Added a pnpm override to force all packages to use the workspace version of @roo-code/types, resolving the type incompatibility issues in ClineProvider.ts and extension.ts. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index cdc8a1abca..e8a44d2906 100644 --- a/package.json +++ b/package.json @@ -62,7 +62,8 @@ "undici": ">=5.29.0", "brace-expansion": ">=2.0.2", "form-data": ">=4.0.4", - "bluebird": ">=3.7.2" + "bluebird": ">=3.7.2", + "@roo-code/types": "workspace:*" } } }