-
Notifications
You must be signed in to change notification settings - Fork 17
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
Import Maps Implementation Plan #168
Comments
Hey, thank you for spearheading this! I had a few thoughts:
|
Yes, exactly 🙂
It would not here. It would be part of the "default".
Wes is currently working on this 🙂 |
Hey folks, I think I have what we could open as the original PR. I was hoping to have it open already, so figured I would just gauge folks opinions on leaving opening it as is. There are some still unresolved things and I wanted to check if we think we need them for the initial PR (while fully recognizing that we need them before we merge).
Here is the current status: https://github.com/wesleytodd/node/pull/1/files I would love any comments over there which I can address before opening up the node PR. |
Done. I also don’t think you need to fear opening a PR. You can open it as draft and include a TODO list in the top post explaining what work remains to be done before it’s ready for review. |
Cool, I just wanted to make sure I avoided any major bike-shedding or mistakes since it was my first and it is already reaching the limits of my available time commitment. Thanks everyone for the comments, I will address them and then open the PR as a draft (hopefully this week). |
Hey folks! @JakobJingleheimer and I sync'd up this week and discussed a plan for an Import Maps PR. The first step was to start an issue here with a more concrete technical plan, so here it is. Just to be clear: this is a plan proposal, all details are up for discussion I just wanted to get the starting point for those discussions.
Goal
The ultimate goal is import maps enabled by default if a well known file is present (ex
./importmap.json
). If no file is found at that location, the loader is not added to the chain. The file location can be changed with a cli flag (ex--import-map
), which will also turn on the loader and throw if the import map is unavailable or malformed.The loader should apply its transformations before custom loaders, and it should work well with other existing features (ex exports, policies, etc). I am intentionally leaving some details light on what it means to "work well with other existing features", my hope is we can identify those areas and what requirements we want to put on the implementation in this discussion.
The ideal end user experience here is that their package manager of choice generates an import map for them and it is found/used without additional user intervention. Secondarily, tool authors or users could hand write (or generate) import maps which provide more bespoke features.
Getting There
To get to this end goal, we plan to start with an experimental loader and flag. This initial approach does not need to get 100% coverage, we will take an iterative approach with a goal of 80% of use cases covered in the initial PR. The initial PR will be behind this experimental flag (ex
--experimental-import-map
). Before that, we need to decide to either write a new loader or pull in an existing implementation from userland. We have a few examples we can reference:@joeldenning
's: https://github.com/node-loader/node-loader-import-maps/blob/master/lib/node-import-map-loader.jsOpen Questions
importmap.json
,.importmap.json
,node_modules/importmap.json
, etc)Next steps
The text was updated successfully, but these errors were encountered: