-
Notifications
You must be signed in to change notification settings - Fork 35
Multiple Import Maps #381
Copy link
Copy link
Closed
Labels
from: otherProposed, edited, or co-edited by an individual or entity that doesn't have a more specific label.Proposed, edited, or co-edited by an individual or entity that doesn't have a more specific label.position: supporttopic: htmlSpec relates to HTML (Hypertext Markup Language)Spec relates to HTML (Hypertext Markup Language)topic: javascriptSpec relates to the JavaScript programming languageSpec relates to the JavaScript programming languagevenue: WHATWG HTML Workstream
Metadata
Metadata
Assignees
Labels
from: otherProposed, edited, or co-edited by an individual or entity that doesn't have a more specific label.Proposed, edited, or co-edited by an individual or entity that doesn't have a more specific label.position: supporttopic: htmlSpec relates to HTML (Hypertext Markup Language)Spec relates to HTML (Hypertext Markup Language)topic: javascriptSpec relates to the JavaScript programming languageSpec relates to the JavaScript programming languagevenue: WHATWG HTML Workstream
WebKittens
@annevk
Title of the spec
Dynamic import maps
URL to the spec
whatwg/html#10528
URL to the spec's repository
https://github.com/whatwg/html
Issue Tracker URL
No response
Explainer URL
whatwg/html#10528 (comment)
TAG Design Review URL
w3ctag/design-reviews#980
Mozilla standards-positions issue URL
mozilla/standards-positions#1058
WebKit Bugzilla URL
https://bugs.webkit.org/show_bug.cgi?id=279025
Radar URL
rdar://135555516
Description
Import maps currently have to load before any ES module and there can only be a single import map per document. That makes them fragile and potentially slow to use in real-life scenarios: Any module that loads before them breaks the entire app, and in apps with many modules the become a large blocking resource, as the entire map for all possible modules needs to load first.
This proposal is to enable multiple import maps per document, by merging them in a consistent and deterministic way.