-
Notifications
You must be signed in to change notification settings - Fork 987
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
Use :npm-deps false to speed up Figwheel startup #3932
Comments
Balance: 0.000000 ETH |
Can you post the current performance metrics and logs? |
I don't have one. It's actually in scope of this issue to collect and compare such metrics. |
It looks like you use he node_modules folder according to this file: findSymlinkedModules.js.patch /**
const path = require('path'); /**
console.log( return resolvedSymlinks; function findModuleSymlinks( // Find module symlinks // For any symlinks found, look in that modules node_modules directory return [...new Set([...symlinks, ...nestedSymlinks])]; function resolveSymlinkPaths(maybeSymlinkPaths, ignoredPaths) { |
Also I don’t know react native tooling that well but it seems to be an issue with 16: |
Description
Latest version of ClojureScript supports
:npm-deps false
compiler option.It might speed up Figwheel start by 20-45 seconds bhauman/lein-figwheel#678
https://twitter.com/mfikes/status/986040242997284865?s=09
Solution
Add
npm-deps false
compiler option to dev builds. Compile builds for ios and android. Check if it increases Figwheel perfomance.The text was updated successfully, but these errors were encountered: