Evan Wallace

Results 542 comments of Evan Wallace

This has recently been implemented in [version 0.16.13](https://github.com/evanw/esbuild/releases/tag/v0.16.13). I called it `original` instead of `request` but it's otherwise the same.

I'm going to close this issue since this there's no more activity in this discussion, it's a non-goal for esbuild to replicate "create react app" boilerplate, and HTML entry points...

Closing as I'm not planning on implementing this within esbuild itself, as this is not how JavaScript works. Importing a file in JavaScript imports all of the code, not just...

Closing this issue as out of scope. It's deliberate that esbuild only supports non-global module-oriented output formats.

I recently encountered a particularly annoying case of this behavior. I wanted to write this: ``` quoteChar should be either '"' or '\'' ``` But no matter what I do,...

It looks like the error is coming from the use of esbuild's `transform` API. Specifically when transforming a string that's larger than a certain size, it's faster to write it...

Sorry, it looks like the actual problem might be some issue that the Go standard library is having with your operating system. Once the Go code gets the file path...

Go is a cross-compiler. It's not supposed to matter which operating system you compile your code on (as long as you aren't using cgo, which esbuild [explicitly disables](https://github.com/evanw/esbuild/blob/a652e730ff07b9081470ef6965f3d54daa7b2aab/Makefile#L10)). For example,...

FYI there is another case of people hitting this problem here: https://github.com/evanw/esbuild/issues/3156.

You did not follow the issue reporting instructions that you deleted when creating this issue. Please provide a way to reproduce your problem or this issue will be closed. Marking...