You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems dependencies resolution is happening in a wrong way. Parcel is trying to resolve node-gyp-build from a totally wrong directory.
node_modules are located here /Users/dzmvasilevsky/Work/TulaCo/crexi/web/node_modules while it is looking somewhere like ../../[email protected]/node_modules/node-gyp-build/bin.js while should look at ../node-gyp-build/bin.js. Probably parcel doesn't respect node-linker=hoisted which makes an npm like node_modules structure
The text was updated successfully, but these errors were encountered:
parcel version:
2.0.4
pnpm version:
8.5.1
Code to reproduce the issue:
Clone this repo https://github.com/DzmVasileusky/pnpm-issue-1
run pnpm i
run pnpm i again
Expected behavior:
No errors
Actual behavior:
Additional information:
node -v prints: v16.15.0
Windows, macOS, or Linux?: MacOS
It seems dependencies resolution is happening in a wrong way. Parcel is trying to resolve
node-gyp-build
from a totally wrong directory.node_modules are located here
/Users/dzmvasilevsky/Work/TulaCo/crexi/web/node_modules
while it is looking somewhere like../../[email protected]/node_modules/node-gyp-build/bin.js
while should look at../node-gyp-build/bin.js
. Probably parcel doesn't respectnode-linker=hoisted
which makes an npm like node_modules structureThe text was updated successfully, but these errors were encountered: