@ghoullier Thanks for the info. The underlines on the sidebar are from the old stylesheet. This should be cache busted though - can you confirm it's definitely not the cache?
JSPM is deprecating support for the old JSPM dev dynamic modules CDN. The project is now an import-maps-only CDN & toolchain.
https://t.co/lUiV0dKgdV
@borkdude If this is still happening, please copy the hex data in https://t.co/bFvak6zvgK and post this as a new issue on https://t.co/Ck1vZ3CpUn, and we'll look into it further.
@wasjustfrontin @angel_d_munoz@evanplaice JSPM CLI defaults to a central "importmap.json" workflow, where `jspm link a.html -o a.html` then plucks individual mappings for an HTML file while retaining the version locks from the main importmap.json file.
JavaScript import-maps are now supported cross-browser! 🗺️ https://t.co/el56VvP1XZ
<script type="importmap"> can define a mapping of external module names to their corresponding URLs, making it easier to use in your code.
With the release of Safari 16.4 today, import maps are now supported across all major browsers! (to be followed closely by modulepreload support)
es-module-shims 1.7.1 was just released, fully polyfilling import maps for only the remaining 26% of users.
https://t.co/tnlzPxXGHG
With the release of Safari 16.4 today, import maps are now supported across all major browsers! (to be followed closely by modulepreload support)
es-module-shims 1.7.1 was just released, fully polyfilling import maps for only the remaining 26% of users.
https://t.co/tnlzPxXGHG
I wrote a little bit about the process and the utilities by @jspm to make this happen. Bringing deno style importmap resolutions to node.
https://t.co/D4REB2uwv2
Wow, I'm really in love with @jspm . I'm glad to see a package manager specifically designed for a buildless development workflow. Cross browser import maps support can't come quickly enough
Thanks for reading and follow for regular updates on modern modules workflows. If you missed our previous post on an introduction to module scripts, you can find that here - https://t.co/sgxDSezY5x.
🟨 A brief intro to "module scripts" in browsers, for the unfamiliar.
When adding type="module" to HTML script tags, this enables native module syntax to import any JavaScript module from an embedded script tag without the need for any additional tooling apart from a server.
🟨 Did you know that the browser has its own custom module resolver? Import Maps are a new feature for customizing module resolution. Supported in Chrome, they landed in Safari TP and flagged in Firefox this year. Consider this example, which throws as it can’t find Lit.
Import Maps even have production benefits for applications that utilize far-future expires caching strategies, by allowing fine-grained caching of modules. See https://t.co/NancHx713A for more info on this topic.