Netflix / x-element

A dead simple starting point for custom elements.
Apache License 2.0
28 stars 12 forks source link

Unpkg links should incorporate a version #153

Closed klebba closed 8 months ago

klebba commented 10 months ago

By default Unpkg will auto select the latest major version of the requested lib, as a result the lit-html demos are broken now that Lit 3 has been published there. See for example:

https://import.dog/@netflix/x-element/demo/lit-html/

See: https://github.com/Netflix/x-element/blob/main/demo/lit-html/base-element.js

https://unpkg.com/lit-html/directives/async-append.js?module

Becomes:

https://unpkg.com/lit-html@2/directives/async-append.js?module

Etc.