npm esbuild 0.8.24
v0.8.24

latest releases: 0.20.2, 0.20.1, 0.20.0...
3 years ago
  • Share reference-counted service instances internally (#600)

    Now calling startService() multiple times will share the underlying esbuild child process as long as the lifetimes of the service objects overlap (i.e. the time from startService() to service.stop()). This is just an internal change; there is no change to the public API. It should result in a faster implementation that uses less memory if your code calls startService() multiple times. Previously each call to startService() generated a separate esbuild child process.

  • Fix re-exports of a side-effect free CommonJS module (#605)

    This release fixes a regression introduced in version 0.8.19 in which an import of an export {...} from re-export of a CommonJS module does not include the CommonJS module if it has been marked as "sideEffect": false in its package.json file. This was the case with the Ramda library, and was due to an unhandled case in the linker.

  • Optionally take binary executable path from environment variable (#592)

    You can now set the ESBUILD_BINARY_PATH environment variable to cause the JavaScript API to use a different binary executable path. This is useful if you want to substitute a modified version of the esbuild binary that contains some extra debugging information.

Don't miss a new esbuild release

NewReleases is sending notifications on new releases.