pnpm install from a subproject in a project with a pnpm-workspace.yaml installs the workspaces' dependencies, not the subproject even if that subproject is not part of the workspace. That is causing the postinstall script to hang in some cases. This change tells pnpm to ignore the parent workspace making it work as expected.
pnpm install
from a subproject in a project with apnpm-workspace.yaml
installs the workspaces' dependencies, not the subproject even if that subproject is not part of the workspace. That is causing the postinstall script to hang in some cases. This change tellspnpm
to ignore the parent workspace making it work as expected.Closes #772
See: https://github.com/pnpm/pnpm/issues/2412