From a86c583e6b50795b8089e483627c73584fca6813 Mon Sep 17 00:00:00 2001 From: Harshal Jain Date: Tue, 27 Jan 2026 18:17:54 +0530 Subject: [PATCH] fix: Update pnpm-workspace.yaml to support nested packages Change package glob pattern from 'packages/*' to 'packages/**' to properly include all nested packages under the packages directory. This resolves ERR_PNPM_WORKSPACE_PKG_NOT_FOUND errors during builds. Fixes #2745 This fix addresses issue #2745 where pnpm fails during builds due to workspace packages not being properly resolved. By changing the glob pattern from 'packages/*' to 'packages/**', we ensure that all nested packages are included in the workspace configuration, fixing the ERR_PNPM_WORKSPACE_PKG_NOT_FOUND error. --- pnpm-workspace.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index acf898add..f1fd7196d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,7 +1,7 @@ packages: - . - ui - - packages/* + - packages/** - extensions/* onlyBuiltDependencies: