-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write high performance webpack loader worker #5171
Comments
That's a great example. So we want to create a webpack loader, like This sounds like a fun challenge. I wouldn't mind giving this a try. |
I'm not actually sure if it needs to be so flexible. Maybe it could just be a layer on top of Babel loader, e.g. I would try to reuse as much has we can from:
There's been so much work on speeding them up and any regressions are carefully tracked. |
I like the idea of keeping it focused on |
I'd like to see ESLint cached too (because that incurs a Babel parse). If we could somehow share AST between our ESLint and Babel pipeline so we're not double parsing the file, that'd be 💯. |
x-ref: #5170
It'd be nice to write a high performance webpack worker that uses shared memory instead of IPC, automatic caching with customizable cache identifier, and anything else to make it really robust.
The text was updated successfully, but these errors were encountered: