From fe1febb025287758829208ac585fbd4be8642838 Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Wed, 10 Jul 2024 17:32:41 +0200 Subject: [PATCH] fix: limit depth of Yarn workspaces Signed-off-by: Jon Koops --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index dfee29403de..806e8908ad5 100644 --- a/package.json +++ b/package.json @@ -111,7 +111,8 @@ }, "workspaces": { "packages": [ - "packages/**" + "packages/*", + "packages/react-integration/demo-app-ts" ] } }