esbuild
esbuild copied to clipboard
An extremely fast bundler for the web
I have multiple entrypoints that import from some set of library modules, and I would like to use splitting to spit out "optimal" chunks such that each entrypoint only ends...
Support code splitting on dynamic import() statements, and additionally split/join on shared bundles for shared dependency models.
## Reproduce steps 1. Initial a react project by `npx esbuild-create-react-app my-app`, choose `TypeScript` template. [esbuild-create-react-app](https://github.com/awran5/esbuild-create-react-app) 1. Install `@fluentui/react` by running `yarn add @fluentui/react` 1. Test `@fluentui/react` components: ```js //...
This is an awesome project, by the way! Do you have any longer-term plans to support ES5? I ask, because this is the only thing preventing me from using esbuild...
Related: https://github.com/evanw/esbuild/issues/459 In Webpack, [`__webpack_public_path__`](https://webpack.js.org/guides/public-path/#on-the-fly) is a runtime variable that contains the public path used to load the assets. Unlike the static `publicPath` configuration (or what's `--asset-path` for esbuild), it...
We have a rather large project using esbuild 0.14.38 and the esbuild-sass-plugin, and when `splitting` is enabled using the following config, esbuild fails to import files when it should: ```js...
`esbuild` is small but complete in every detail, do you have any plans to support the plugin-in system to extend the web development workflows?
It'd be awesome if esbuild supported Terser-like `/*@__INLINE__*/` and `/*@__NOINLINE__*/` [annotations](https://github.com/terser/terser#annotations). Especially if they are implemented in a more powerful way than Terser currently implements them. E.g. example [limitation](https://github.com/terser/terser/issues/1179#issuecomment-1102595173).
Hello! My project has the following file structure: ``` dist node_modules src ├─ app | └─ App.tsx ├─ client | └─ index.tsx └─ server ├─ index.ts └─ routes ├─ route-api.ts...
Hey there, I am currently working on writing a copy plugin for esbuild (yeah, yet another one, the existing ones unfortunately don't cover my use cases...). I want to be...