Skip to content

v108

Compare
Choose a tag to compare
@ije ije released this 26 Feb 02:25
· 951 commits to main since this release
  • Add denonext target to use deno 1.31 node compatibility layer, we will switch to the denonext target as default for deno once deno deploy supports node: specifier.
    import "https://esm.sh/your-package?target=denonext"
  • Redirect to CSS file for CSS packages
    https://esm.sh/normalize.css -> https://esm.sh/normalize.css/normalize.css
    
  • Fix wasm packages can't resolve the default wasm file.
    import init, { transform } from "https://esm.sh/lightningcss-wasm";
    // v107: you need to specify the wasm URL
    await init("https://esm.sh/lightningcss-wasm/lightningcss_node.wasm")
    // v108: you don't need to specify it
    await init()
  • Disable bundle mode for stable builds
  • Fix alias export (close #527)
  • Update references to reqOrigin to use cdnOrigin (#529 by @jaredcwhite)

Credits

Huge thanks to @jaredcwhite