-
-
Notifications
You must be signed in to change notification settings - Fork 674
[Feature]: Support import.meta.resolve
+ Node Specific Meta Values
#8008
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
Comments
This issue has been automatically marked as stale because it has not had recent activity. If this issue is still affecting you, please leave any comment (for example, "bump"). We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
Bump |
This issue has been automatically marked as stale because it has not had recent activity. If this issue is still affecting you, please leave any comment (for example, "bump"). We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
Bump |
This issue has been automatically marked as stale because it has not had recent activity. If this issue is still affecting you, please leave any comment (for example, "bump"). We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
Bump |
What problem does this feature solve?
Node recently added support for the following (currently in RC status):
import.meta.dirname
(https://nodejs.org/api/esm.html#importmetadirname)import.meta.filename
(https://nodejs.org/api/esm.html#importmetafilename)import.meta.resolve
(https://nodejs.org/api/esm.html#importmetaresolvespecifier)As webpack + rspack already handle
import.meta.url
, I feel like it wouldn't be too much of a stretch to support these?Currently in rspack:
import.meta.dirname
is replaced by/* unsupported import.meta.dirname */ undefined
import.meta.filename
is replaced by/* unsupported import.meta.filename */ undefined
import.meta.resolve
is replaced by({}).resolve
I'm not sure how webpack handles this today, but it might be worth aligning with the webpack team regardless? And even if we can't support these (in the short term or long term), should the built no error/warn if these are encountered?
What does the proposed API of configuration look like?
I guess maybe
node.__filename
andnode.__dirname
could impact these (see https://rspack.dev/config/node), or new options could be added (either genericnode.filename
andnode.dirname
properties that handle both CJS and ESM, or a newnode.import
property just for ESM)?The text was updated successfully, but these errors were encountered: