-
Notifications
You must be signed in to change notification settings - Fork 1
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
Doesn't install local package's dependencies #2
Comments
It should install Did you run |
Had same issue. Seems like this works. |
I checked it now. It indeed did not work for first run with [email protected], it produced the same result as running I started do find the problem, decreased npm version to 8.0.0, but since then, I cannot reproduce the issue even with 8.15.0 or 8.19.3. Further investigation would be required, I can do it, in case there's a need for it. It still works ok with Yarn and PNPM. |
I think I have found the problem. There might be cases when we restore the project's package.json too early, before npm reads it in its install task. And because of this, instead of installing the created tarball, npm simply links the package, as we hadn't used @Connum @thefoxie I am going to publish a new release with the fix in the next couple days, hopefully this will solve the issue you reported. The |
Published the fix in v0.2.5. Thanks for the report. Feel free to reopen this issue if something is still not OK. |
Maybe I'm missing the point, but using this does not install any local packages' dependencies, so it's almost the same as simply using
Is there a way to have the dependencies installed to the dependent package's
node_modules
?The text was updated successfully, but these errors were encountered: