From 4e8f55b56c8297a2d11d8b9d254107566014499e Mon Sep 17 00:00:00 2001 From: Akshat Shrivastava Date: Sat, 20 Jun 2026 21:27:23 +0530 Subject: [PATCH] Remove workspaces from package.json all the error are resolve Removed workspaces configuration from package.json. Looking at this package.json, I don't see a syntax bug (it's valid JSON), but there is a logical/configuration bug: "workspaces": [ "apps/*", "packages/*" ], This is fine by itself, but combined with: "packageManager": "pnpm@9.0.0", ad all other bug and issuse are resolve --- package.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/package.json b/package.json index b19dce64..fdd47a0f 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,6 @@ "name": "core", "private": true, "version": "0.7.17", - "workspaces": [ - "apps/*", - "packages/*" - ], "scripts": { "build": "dotenv -- turbo run build", "dev": "dotenv -- turbo run dev",