Eric L. Goldstein

Results 16 comments of Eric L. Goldstein

From reading through the [documentation on handling packages in Node.js](https://nodejs.org/docs/latest-v16.x/api/packages.html), it should be handling this "automatically" when you import a package path. Perhaps I'm missing something?

> A few more questions: > > 1. Does your package have `main` defined in package.json? > > 2. Does your package have `type` defined in package.json? > > 3....

Confirmed I'm seeing the same exact errors in my project too. Thank you for reporting.

There's a comment at the end of the minified JS. For example, the contents of the entrypoint file after bundling: ``` // @bun //# debugId=109EB3EE161376B264756e2164756e21 ``` wish I could share...

@jakeboone02 This is so nice! Great job! One thing that I noticed while looking this over was the "new" example shows as being over 6x slower than before. Is that...

> --minify includes --minify-identifiers, which will rename functions. For use cases that depend on function.name and class.name to be as is, there is https://esbuild.github.io/api/#keep-names, which bun does not have yet....