v114
In v114, we switched to pnpm instead of yarn which can save the server disk space and improve the build performance significantly, and now the server can handle package files of private registry (thanks @Justinidlerz for contributing to this).
We upgraded esbuild to 0.17.14, and a new query ?conditions
added as conditions option of esbuild:
import foo from "https://esm.sh/foo?conditions=custom1,custom2"
For Deno users, we fixed some incorrect/missed types. Thanks for @marvinhagemeister making him first great PR to this project.
Changelog:
- Add
?conditions
query as esbuild option - Use pnpm to install packages instead of yarn (save the server disk space & improve the build performance)
- Serve static files on local (#564 @Justinidlerz)
- Support
.d.mts
extension (close #580) - Fix CJS transpiling (close #577)
- Fix types building (close #572, #576)
- Fix invalid type URL if submodule is main entry (#579 @marvinhagemeister)
- Upgrade esbuild to 0.17.14