-
-
Notifications
You must be signed in to change notification settings - Fork 673
Lazily load library #572
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
Comments
One reason for this is that there could be Related: #448 |
So we could have that each I'm also experimenting with lerna and moving dependencies like To solve this after the Taking this a step further, in each package I create a hidden directory |
Another solution to this might be to not add everything to lib paths, but to have a fallback handler in case a file is not found in either baseDir or libDir that then looks up the file in node_modules etc. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Currently when adding libraries, each file found in the library paths is parsed. However, this should be done when a file is referenced. I ran into this problem because the compiler I'm writing for wasmos finds all
**/assembly
folders in a projectsnode_modules
and adds it as a library path.The text was updated successfully, but these errors were encountered: