-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
How to update dependencies in sub-packages #2142
Comments
That would be a nice feature. But as a workaround you could use e.g. syncpack Example: update React from version 16.8.6 to 16.9.0.
Open package.json at project root and set the new versions.
Open one of the sub projectes (in ./packages) that have these dependencies and set the new versions here as well.
Save and run Run BTW: We use peerDependencies for all third party packages and dependencies for our internal packages:
|
Something I'm playing with is using the local path file notation in the sub-package. So, in the root package.json I have:
And in the sub-package package.json, I have:
I'll confess I'm not sure I understand all the implications and it feels a little gross for a sub package to specify the path of deps of the root package but it seems to accomplish what I'm looking for. When I run This would only reasonably work for dev deps where it's expected to have the whole repo, and not just a single package. |
Just to check, is it possible to do something like I would expect it to update all packages in each subproject package.json to the highest version possible as per the package.json. |
lerna execute npx ncu -u Can it work? |
lerna exec yarn upgrade --latest not working! |
@ccpu I think you need to write it slightly differently If you don't separate the command with the |
@counterbeing thanks for the suggestion, unfortunatly it didn't work, throws |
@ccpu no space between |
@mesqueeb there is no space, I'm running i am using following boilerplate: |
@ccpu Your lerna is out of date, I'd go ahead and upgrade that for a start. Not sure if it will help, but it's worth a shot. First check to see which version you're running globally, it's possibly different than what's in your package.json file. You can update all of your global yarn packages with After that, try the command again and see what you get. |
We're kind of drifting away from the original issue.
The more packages, the more time it can take. And NPM being what it is, the more disk space is used. A wishful command would look at which dependencies are outdated, link to the local one and install the outside ones (eventually supporting the |
You're right @GMartigny. Apologies. @ccpu, it sounds as if your problem is separate and you should probably open a new one if your problem persists. @GMartigny On the topic of your issue: I think the same issue exists with |
@GMartigny me too apologies, @counterbeing upgrade didn't solve my problem but using quotation mark did. |
I started using lerna to be able to install all node modules for all subpackages using single command.
my root
my
my
i want to upgrade moment in the
if i run
How should i properly upgrade mode module in the lerna's sub-package? |
Is there any guide for doing this? Is this something Lerna is strictly against offering any support or guidance on? I can't find real world examples of lerna projects and toolchain for managing dependencies (not dev deps) other than manually bumping versions. |
This is a huge pain in our projects too. We still have no idea how to do this basic chore well. This causes endless breakage & pain. |
@scriptrance thank you for sharing this! |
you should use the package version, it's work for me. like below:
|
Expected Behavior
DevDependencies can be shared amongst the root package and sub-packages. For example, it's nice to be able to run tests in a specific package and at the root directory. This mean all packages (including root) share the same test runner.
Lerna is able to hoist shared dependencies to the top (which is nice).
However, when updating shared dependencies offer no help to bump version in all packages. Of course I can use
lerna exec -- npm update whatever
, but NPM will actually install the new version in each packages which can take forever.Possible Solution
A command like
lerna update
could run over everypackage.json
and match the version with the root.Alternatively, in order to not rely in the root package,
lerna update [email protected]
could be used to define the required version.Steps to Reproduce (for bugs)
lerna bootstrap --hoist
Context
All my sub-packages and root share
AVA
,nyc
andesm
. It means I can runnpm test
in the root to test everything (in CI for example) or in any sub-directory (while adding a new feature for example).Updating these dependencies can turn into a nightmare. Running
lerna exec -- npm update ava nyc esm
take way too long and moreover actually install the package when I just want to update thepackage.json
.Copy-pasting the version to all
package.json
and runninglerna bootstrap --hoist
is viable, but as the number of sub-packages grows it becomes more and more tedious.Your Environment
lerna --version
npm --version
node --version
The text was updated successfully, but these errors were encountered: