v0.8.46
-
Fix minification of
.0
in CSS (#804)If you write
.0
instead of0
in CSS and enabled--minify
, esbuild would previously minify this token incorrectly (the token was deleted). This bug has been fixed and esbuild should now minify this token to0
. -
Support range requests in local HTTP server
The local HTTP server built in to esbuild now supports range requests, which are necessary for video playback in Safari. This means you can now use
<video>
tags in your HTML pages with esbuild's local HTTP server.