esbuild icon indicating copy to clipboard operation
esbuild copied to clipboard

An extremely fast bundler for the web

Results 402 esbuild issues
Sort by recently updated
recently updated
newest added

There are cases that we need multiple plugins to handle some import statements. For example, an alias plugin that resolves the paths to the alias imports. The result of this...

plugins

if something like this could be merged, I can add tests

![image](https://user-images.githubusercontent.com/8898718/146488070-df1c8511-4407-480c-938c-25b07cd44aeb.png) It seems the css output missing entryPoint info , which is inconvenient to group css file according to entryPoint, which is important for html-plugin supporting multi page application.

The file loader works well, but all files are placed in the same folder of the bundled ```js``` or outdir. With it, css, images, fonts, etc are put all together....

Hiya! This is kind of an aside to #1606 and #2280. Presently, the `esbuild` server process leaks memory associated with the `activeBuild` and everything about it if a `build({ incremental:...

Using a very simple npm package as an example, like `jwt-simple` given the following input ```js import JWT from 'jwt-simple' console.log(JWT) ``` running this through esbuild with bundle and format...

Hi, I have initially reported that in #2158 but I thought it may be useful to report it as an individual issue as the original issue is a bit different....

It seems that in some circumstances function arguments use the global variable names. For example: ```ts // one file const r: number = 1 // another file function x (r:...

Per [the esbuild docs about Deno](https://esbuild.github.io/getting-started/#deno): > It has basically the same API as esbuild's npm package with one addition: you need to call stop() when you're done because unlike...

unactionable

WebPack has some options for customizing how chunks will be generated (https://webpack.js.org/plugins/split-chunks-plugin/#optimizationsplitchunks) and I think it'd be useful to port (some?) of them over. In particular I miss the "minSize"...