Evan Wallace
Evan Wallace
I'm using the `Float16Array` polyfill from here: https://github.com/petamoriken/float16. So if there's a bug with that polyfill, you should report it there instead. However, the behavior you are describing with 16-bit...
Yup, this sucks. Logged a bug against the spec: https://www.w3.org/Bugs/Public/show_bug.cgi?id=28505. We'll see how it goes.
Sorry for the lack of communication. I'd really like to see this project take off too! A few things happened. I've got a really involved job as a co-founder of...
The reason esbuild does it this way is because that's the way `exports` is specified: https://nodejs.org/api/esm.html#resolver-algorithm-specification, so that's how it's supposed to work. What you are requesting would be a...
This looks like a bug in my control flow analysis. I can fix that bug and in the meantime you can just move the throw statement outside the switch statement...
It's not totally clear to me what problem this is solving because you didn't include any code demonstrating a problem. But if I had to guess, it looks like you're...
You can replace things like this with arbitrary run-time values using the [inject](https://esbuild.github.io/api/#inject) and [define](https://esbuild.github.io/api/#define) features. Here's an example: ``` $ cat example.js console.log(import.meta.url) $ cat import-meta-url.js export var import_meta_url...
FYI: The glob pattern part of this PR has been released in [version 0.19.0](https://github.com/evanw/esbuild/releases/tag/v0.19.0). The documentation for this feature is here: https://esbuild.github.io/api/#glob.
I don't have any plans at the moment (it was just released!). It's good to hear that it works. I think it makes sense to use a separate package for...
The `assert` keyword doesn't affect how the module is loaded (deliberately, by design). So you would just write a normal plugin that works on `.css` files and that constructs a...