Alon Mizrahi

Results 50 comments of Alon Mizrahi

we started to migrate our monorepo to vite. our biggest frontend project has around 2800 modules on load. we were able to reduce it to 1800 with lazyload after some...

> @AlonMiz, curious if you've improved your load performance in the interim -- we've got a project on a similar scale facing the same sorts of issues. Would love to...

@davidwallacejackson yes it did pretty well in most cases, some issues in edge cases, but not something significant. eg. developing react components worked great

+1 waiting for that feature for a long time... agree that it should align with webpack, as webpack is oriented from the perspective of the entry point. any workarounds though?

> loading . . . connection timeout ⚠️

I've made a package for yarn(v1) for the exact same purpose. running it in our CI pipeline. https://www.npmjs.com/package/yarn-one-version-rule would be nice to have something similar for pnpm

Same issue here BTW in jest 27 the error does have a reasonable message, and a workaround ``` Error: You need to run with a version of node that supports...

we experience that as well in a pretty big monorepo. i was playing with https://github.com/aelbore/esbuild-jest, it reduced the time by a big factor 104s => 28s but im not sure...

A related issue is that you cannot run parallel functional tests at all. Unless they are configured on different browsers - which means I can't run 2 tests in parallel...

@jason0x43 any news? :/ currently, our solution is to spawn multiple child node processes, get the stdout and stderr, and parse the output to figure out fail and success suites...