Skip to content
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

Open
GMartigny opened this issue Jun 18, 2019 · 19 comments
Open

How to update dependencies in sub-packages #2142

GMartigny opened this issue Jun 18, 2019 · 19 comments
Labels
scope: package management Issues with the bootstrap/add/link commands that relate to package management

Comments

@GMartigny
Copy link

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 every package.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)

  1. Have a lot of sub-packages with outdated dependencies
  2. Be using lerna bootstrap --hoist
  3. Wish to update all sub-packages

Context

All my sub-packages and root share AVA, nyc and esm. It means I can run npm 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 the package.json.
Copy-pasting the version to all package.json and running lerna bootstrap --hoist is viable, but as the number of sub-packages grows it becomes more and more tedious.

Your Environment

Executable Version
lerna --version 3.15.0
npm --version 6.7.0
node --version 11.13.0
OS Version
Windows 10 1803
@leifoolsen
Copy link

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.

npm outdated

react                16.8.6  16.9.0
react-dom            16.8.6. 16.9.0

Open package.json at project root and set the new versions.

  "devDependencies": {
    "@babel/cli": "7.5.5",
    "@babel/core": "7.5.5",
    ...
    "react": "16.9.0",
    "react-dom": "16.9.0",
    ...
    "webpack": "4.39.2"
  },

Open one of the sub projectes (in ./packages) that have these dependencies and set the new versions here as well.

  "peerDependencies": {
    "classnames": "^2.2.6",
    "prop-types": "^15.7.2",
    "react": "^16.9.0",
    "react-dom": "^16.9.0"
  },

Save and run npx syncpack list --peer from project root to verify that changes are detcted.

Run npx syncpack fix-mismatches --peer to upgrade similar dependencies in all the other subprojects.

syncpack-fix-mismatches

BTW: We use peerDependencies for all third party packages and dependencies for our internal packages:

{
  "name": "@brreg-frontend/button-react",
  "version": "0.0.96",
  "main": "lib/index.js",
  "author": {
    "name": "UX team",
    "url": "https://www.brreg.no/"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "....."
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib/",
    "src/"
  ],
  "peerDependencies": {
    "classnames": "^2.2.6",
    "prop-types": "^15.7.2",
    "react": "^16.9.0",
    "react-dom": "^16.9.0"
  },
  "dependencies": {
    "@brreg-frontend/button-style": "^0.0.72",
    "@brreg-frontend/icon-react": "^0.0.75"
  }
}

@craveytrain
Copy link

Something I'm playing with is using the local path file notation in the sub-package.

So, in the root package.json I have:

  "devDependencies": {
    "cli-util": "^1.4.2"
  }

And in the sub-package package.json, I have:

  "devDependencies": {
    "cli-util": "file:../../node_modules/cli-util"
  }

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 npm ci on the root package, it installs all the deps as intended on the root package. When I run lerna bootstrap it symlinks the sub-package's node_modules entry to the one of the root package.

This would only reasonably work for dev deps where it's expected to have the whole repo, and not just a single package.

@mesqueeb
Copy link

Just to check, is it possible to do something like lerna execute npm update for subfolders?

I would expect it to update all packages in each subproject package.json to the highest version possible as per the package.json.

@Ziv-Barber
Copy link

lerna execute npx ncu -u

Can it work?

@ccpu
Copy link

ccpu commented Jun 23, 2020

lerna exec yarn upgrade --latest not working!

@counterbeing
Copy link

@ccpu I think you need to write it slightly differently lerna exec -- yarn upgrade --latest.

If you don't separate the command with the -- it doesn't know how to tell where the parent command ends and the sub command begins.

@ccpu
Copy link

ccpu commented Aug 18, 2020

@counterbeing thanks for the suggestion, unfortunatly it didn't work, throws ERR! lerna Unknown argument: latest error.

@mesqueeb
Copy link

@ccpu no space between --latest

@ccpu
Copy link

ccpu commented Aug 18, 2020

@mesqueeb there is no space, I'm running lerna exec -- yarn upgrade --latest command, and getting ERR! lerna Unknown argument: latest, very strange!

i am using following boilerplate:
https://github.com/ccpu/typescript-lerna-boilerplate

@counterbeing
Copy link

counterbeing commented Aug 18, 2020

@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. lerna --version. 3.22.1 appears to be the latest for me. My global lerna, and the one in my package are on this version.

You can update all of your global yarn packages with yarn global upgrade (this is for ALL your global modules). Then in your project try yarn upgrade lerna to make sure that's up to date.

After that, try the command again and see what you get.

@GMartigny
Copy link
Author

We're kind of drifting away from the original issue.

lerna exec -- npm update is working as expected. The problem is that running npm update in each subfolder will mess with the Lerna behavior (break symbolic links and re-install all dependencies).
With few sub-packages, this is fine. Running lerna boostrap will restore the previous state.

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 --hoist param).

@counterbeing
Copy link

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 yarn. I ran an update for all of my packages yesterday, and they weren't working until i ran a yarn install in each one after doing all of the updates. Just a clue since we're on the topic.

@ccpu
Copy link

ccpu commented Aug 19, 2020

@GMartigny me too apologies, @counterbeing upgrade didn't solve my problem but using quotation mark did. lerna exec -- "yarn upgrade --latest", probably windows things! thanks for the help.

@sprilukin
Copy link

I started using lerna to be able to install all node modules for all subpackages using single command.
At the moment i do not use any other lerna features except lerna bootstrap.
My lerna.json:

{
  "lerna": "3.22.0",
  "npmClient": "yarn",
  "packages": [
    "package-a",
    "package-b"
  ],
  "version": "1.0.0"
}

my root package.json:

{
  "name": "test",
  "private": true,
  "version": "1.0.0",
  "scripts": {
    "postinstall": "lerna bootstrap"
  },
  "dependencies": {
    "lerna": "^3.22.1"
  }
}

my package-a's package.json:

{
  "name": "package-a",
  "version": "1.0.0",
  "private": true,
  "dependencies": {
    "moment": "2.22.0"
  }
}

my package-b's package.json:

{
  "name": "package-b",
  "version": "1.0.0",
  "private": true,
  "dependencies": {
    "package-a": "1.0.0",
    "moment": "2.22.0"
  }
}

i want to upgrade moment in the package-b.
if i run yarn upgrade moment --latest in the package-b folder i got the following error:

yarn upgrade v1.22.5
[1/4] 🔍  Resolving packages...
error Received malformed response from registry for "package-a". The registry may be down.
info Visit https://yarnpkg.com/en/docs/cli/upgrade for documentation about this command.

if i run npx lerna --scope package-b exec -- "yarn upgrade moment --latest" in the root folder i get the following error:

lerna notice cli v3.22.1
lerna notice filter including "package-b"
lerna info filter [ 'package-b' ]
lerna info Executing command in 1 package: "yarn upgrade moment --latest"
yarn upgrade v1.22.5
[1/4] 🔍  Resolving packages...
error Received malformed response from registry for "package-a". The registry may be down.
info Visit https://yarnpkg.com/en/docs/cli/upgrade for documentation about this command.
lerna ERR! yarn upgrade moment --latest exited 1 in 'package-b'
lerna ERR! yarn upgrade moment --latest exited 1 in 'package-b'

How should i properly upgrade mode module in the lerna's sub-package?

@cmcnicholas
Copy link

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.

@rektide
Copy link

rektide commented Oct 1, 2021

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
Copy link

Try this
https://www.npmjs.com/package/lerna-update-wizard

@nandorojo
Copy link

@imjeen
Copy link

imjeen commented Nov 26, 2021

npx lerna --scope package-b exec -- "yarn upgrade moment --latest

you should use the package version, it's work for me. like below:

npx lerna --scope package-b exec -- "yarn upgrade moment@latest"

@JamesHenry JamesHenry added the scope: package management Issues with the bootstrap/add/link commands that relate to package management label Jun 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: package management Issues with the bootstrap/add/link commands that relate to package management
Projects
None yet
Development

No branches or pull requests