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.
This commit is contained in:
Harshal Jain 2026-01-27 18:17:54 +05:30 committed by GitHub
parent 735aea9efa
commit a86c583e6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
packages:
- .
- ui
- packages/*
- packages/**
- extensions/*
onlyBuiltDependencies: