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 has been archived by the owner on Oct 21, 2024. It is now read-only.
Packages with multiple dependencies like lit are not automatically processed by jspm, jspm prefers to send a whole tree of imports which if we want to support it (we do) We need to change the way we handle the JSPM response. For example this what is delivered from Lit.
currently we expect the import, but we're not handling the scopes, that or course makes the jspm imports to fail in the browser, skypack and presumaby the other cdns handle the imports by themselves (i.e they transform to full specifiers) so that's why we got caught by this with jspm
The text was updated successfully, but these errors were encountered:
Packages with multiple dependencies like
lit
are not automatically processed by jspm, jspm prefers to send a whole tree of imports which if we want to support it (we do) We need to change the way we handle the JSPM response. For example this what is delivered from Lit.currently we expect the import, but we're not handling the scopes, that or course makes the jspm imports to fail in the browser, skypack and presumaby the other cdns handle the imports by themselves (i.e they transform to full specifiers) so that's why we got caught by this with jspm
The text was updated successfully, but these errors were encountered: