Skip to content

v0.8.46

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Feb 02:53
  • Fix minification of .0 in CSS (#804)

    If you write .0 instead of 0 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 to 0.

  • 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.