You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2023. It is now read-only.
Right now hash/search fragments are preserved when importing new URLs:
import'foo?a';import'foo?b';
will load 2 different modules and use these fragments as being passed to the "main" entrypoint of foo. This goes against how package name maps are seeking to work WICG/import-maps#38 . We should do a couple things to get in line with the package name map behavior if that is what we are seeking to use for web compatibility.
treat all characters prior to / as part of the package specifier for these bare import specifiers. meaning that package names can contain ? or #.
probably enhance errors for when the part of such specifiers preceding the ? or # get a message about if the prefix would have been found.
Right now hash/search fragments are preserved when importing new URLs:
will load 2 different modules and use these fragments as being passed to the
"main"entrypoint offoo. This goes against how package name maps are seeking to work WICG/import-maps#38 . We should do a couple things to get in line with the package name map behavior if that is what we are seeking to use for web compatibility./as part of the package specifier for these bare import specifiers. meaning that package names can contain?or#.?or#get a message about if the prefix would have been found.