-
-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Enable PnP by default if within a PnP environment? #199
Comments
I'm not very comfortable with doing that; in general, precompiling in the way you imply next.js does brings with it risks, which include things like this. Have you filed an issue with next.js to fix its precompilation? |
Yep, along with a few candidate solutions: vercel/next.js#8659 Note that I don't think there's any urgency to do anything in |
It seems like the only options for resolve are:
|
We found an interesting edge case when porting the Babel repo to Yarn 2: they are using Turns out Jest is executing the module in its own sandbox, so the runtime never gets the chance to override |
That seems like something that would certainly be easier if resolve auto-detected; but also is an inherent cost of running code in workers. Could the pnp runtime intercept the creation of workers, or their evaluation of code, and ensure that the right setup is done? |
I'm a bit cautious doing this, as it's generally quite intrusive and prone to break 🤔 I feel like the less we need to add a layer between Node and its users, the better I feel (for example that's part of the reason why we use |
Another edge case: Yarn offers a way to 'symlink' a package to a specific folder on the disk through the use of the {
"dependencies": {
"my-app": "link:./src"
}
} Since the PnP integration operates by telling |
Hmm, I'm not clear on why it being a link means you can't provide a fake location for it. Can you elaborate? |
Imagine resolving If Then Now imagine the same if |
Fwiw, a generic fix for that would be for the In this case the functor would return Unfortunately it's probably a breaking change... 🙁 |
v2 is out in prerelease form; we can still get breaking changes in. To clarify: the change you're suggesting would be for the |
I made a tentative PR: #205 - basically giving the hook the option to skip the If possible at all, I would really appreciate if the change could be made in a semver-minor release. Lots of packages are depending on |
Thanks; if it's nonbreaking then I'll definitely backport it to 1.x. |
What is exactly the status on this? I am facing a really weird issue. using
So it looks like when something in |
Ok, for anyone facing the same issue than me, make sure |
@arcanix given this is in v1.15+, and since i'd prefer not to hardcode PnP stuff in this package, it seems like this can be closed. lmk if it needs to be reopened. |
This is a followup to #174. In this PR, we've implemented
normalize-options.js
as a way for third-party runtimes to hook intoresolve
by default and modify its default options.It worked really well, and unlocked many packages - Babel being an important one. I just found out, however, that it doesn't work with one particular project: Next.js. For some reason, Next precompiles
resolve
and thus causesnormalize-options.js
to disappear, leaving no chance to the hook to override it.There are a few options to solve that on their side, but I wonder: could/should
resolve
improve its support? Since 2018 a lot of new projects have adopted PnP, includingenhanced-resolve
from Webpack. Coupled to the fact that:How would you feel about adding the PnP logic into
resolve
itself ifprocess.versions.pnp
is detected (we would still haveforceNodeResolution
to prevent it, just like it is at the moment)?The text was updated successfully, but these errors were encountered: