Reece Dunham
Reece Dunham
@evanw I would also like to see this get a review (and eventually land, ideally). Sorry to ping, just want to make sure it's not forgotten about.
@goloveychuk can you rebase this against the master branch?
Thanks for the PR. While I'm not a maintainer of the project (more of just an enthusiastic user), I like the direction is going in, but I have one concern....
@goloveychuk https://github.com/RDIL/tiny-testing-ground/blob/56fb91329d01496187b7dab487c1419f4bd19d16/build/index.js#L15 for instance. You can clone the repo and test the full case. I committed node_modules since I swapped out the `esbuild.wasm` file (from `npm/esbuild-wasm` with `make platform-wasm`).
Fair enough. Given that is the case, I see no problems with this PR.
Tip: one of the best ways to reduce build time and memory is to use esbuild-loader instead of babel-loader. See the website in this repo's config for the setup and...
Personally, after using SWC and ESBuild for a while, I honestly prefer ESBuild. SWC is not documented nearly as much, and ESBuild has very frequent releases fixing bugs and adding...
ESBuild and swc's performance difference should be very tiny, given how, especially compared to JS tools, they are both much faster. I don't really think its worth comparing the 2...
Perf is arguably already compromised by using Babel in the first place.
I think we should drop Babel personally. Pros: - Better perf + memory usage - Smaller dependency tree, causing potentially faster install times Cons: - Transforms may need to be...