v108
- Add
denonext
target to use deno 1.31 node compatibility layer, we will switch to thedenonext
target as default for deno once deno deploy supportsnode:
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