-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
Stop backing up node_modules
? 🤔
#598
Comments
I would definitely be in favor of this; my one complaint with using |
I noticed something else recently that ember-try doesn't seem to use the package-lock.json at all 🤔 which could also be contributing to the slowdowns |
There's another issue open related to lockfiles, where we may change defaults. But, it very intentionally does not use lockfiles as in the common case of an addon testing against multiple versions of a dep we want other deps to "float" as they would for a new install. This can be overridden and is documented in the README, but I would only recommend for apps and non-public projects that do not expect to be installed in unknown sets of dependencies. |
Ah yes I have found the other issue #597 I will respond to your comment over there so as not to pollute this thread 👍 |
When
ember-try
's functionality was initially created, the package managers that existed at the time (IIRC it was npm@1 and npm@2) were extremely bad at ensuring thenode_modules
directory is laid out correctly. It was very very bad at fixing an invalid tree.Current versions (for quite some time) do not have this issue, and backing up / restoring is quite a long time.
I'd like to remove the backup of
node_modules
...Thoughts?
The text was updated successfully, but these errors were encountered: