Skip to content

v0.0.4

Choose a tag to compare

@fuongz fuongz released this 02 Apr 04:02
· 41 commits to main since this release
53f6eb8

Bug Fixes

  • Fixed AsyncLocalStorage missing constructor on Cloudflare Workers - Under --target browser,
    Bun was stubbing or inlining node:async_hooks instead of leaving it as a bare specifier.
    At runtime, Cloudflare Workers couldn't find the constructor even with nodejs_compat enabled.

    The build now passes --packages external to the browser-targeted step, so all node:*
    imports (and npm dependencies) are left as bare specifiers in the output. Wrangler resolves
    them correctly at deploy time.