You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
Your benchmark doesn't packages which require native compilation.
Try to depend on truffle, for example. it depends on quite a few native modules.
NPM compiles them one by one. Yarn opens multiple parallel processes to compile, and achieves great efficiency.
Moreover, since re-install often requires to compile such native modules again (I don't really know why, but both NPM and Yarn do it) , the above compilation times affect not only initial installs but also re-installs.
The text was updated successfully, but these errors were encountered:
pnpm builds native dependencies concurrently as well. However, these benchmarks are already taking up too much time to run, so I am not adding more fixtures. Maybe after a cleanup
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Your benchmark doesn't packages which require native compilation.
Try to depend on
truffle
, for example. it depends on quite a few native modules.NPM compiles them one by one. Yarn opens multiple parallel processes to compile, and achieves great efficiency.
Moreover, since re-install often requires to compile such native modules again (I don't really know why, but both NPM and Yarn do it) , the above compilation times affect not only initial installs but also re-installs.
The text was updated successfully, but these errors were encountered: