-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty path matching in patterns #49447
Comments
I will throw in that if we make |
@jkrems we were discussing a multi-major deprecation of path exports. At the current rate of progress on anyone having a clue how to build a standard around |
Remember as well that these paths are also used for CJS, and |
Ah that's an interesting case. Does that work currently with exports resolution to resolve eg index? If so, I'm not sure the group as a whole made a decision to support that explicitly. |
Yes, it does (for CJS), and yes, we definitely did. Only ESM has limited resolution inside a |
@ljharb I wrote the PR and I didn't know about this case! I disagree in thinking the answer to the fact that Here is an example of a case where empty string matches might unintentially expose modules: {
"exports": {
"./*": "./*/main.js
}
} Where there exist subfolders like I do not think it would be obvious that |
You can run |
@ljharb what is exposed and what is actually used are two different things though. We still have an opportunity to fix minor issues like this that may have slipped through. |
@ljharb brought up in the exports patterns PR that it would be worthwhile to ensure the
*
matching in exports patterns permits empty matches to ensure consistency with all other wildcard schemes.I agree this conceptual integrity could make sense, and in addition such a feature could be added as a fully backwards compatible change to exports patterns so I would be glad to see this land either way.
One benefit I really liked of not matching the null match is that currently:
will cause
import.meta.resolve('pkg/')
to resolve into thesub/
folder. As a result this meansimport.meta.resolve('pkg/')
is not a reliable way to get a package root (and also relates to the package.json resolution discussion previously).If we now use patterns here:
then as currently written,
import.meta.resolve('pkg/')
will throw aPACKAGE_PATH_NOT_EXPORTED
error because the empty string match is not permitted and thus this "reserves" this space for us to treat it as a special package base resolution case which seems a really useful property for a resolver to have to me in being able to resolve the base of any package this way.On the other hand I do not have any conceptual arguments against matching the empty string pattern other than that I simply can't think of a single use case in which it is useful. If the argument is purely one of conceptual consistency being important I'm all for that though, but would be concerned about invalidating a perfectly good use case in the name of that.
The text was updated successfully, but these errors were encountered: