pnpm update
Aliases: up
, upgrade
pnpm update
updates packages to their latest version based on the specified range.
Utilisé sans arguments, met à jour toutes les dépendances.
TL;DR
Command | Meaning |
---|---|
pnpm up | Updates all dependencies, adhering to ranges specified in package.json |
pnpm up --latest | Updates all dependencies to their latest versions |
pnpm up foo@2 | Updates foo to the latest version on v2 |
pnpm up "@babel/*" | Updates all dependencies under the @babel scope |
Selecting dependencies with patterns
You can use patterns to update specific dependencies.
Update all babel
packages:
pnpm update "@babel/*"
Update all dependencies, except webpack
:
pnpm update "\!webpack"
Patterns may also be combined, so the next command will update all babel
packages, except core
:
pnpm update "@babel/*" "\!@babel/core"
Options
--recursive, -r
Exécute la mise à jour en parallèle dans tous les sous-dossiers contenant un package.json
(à l'exception de node_modules/).
Exemples d'utilisation :
pnpm --recursive update
# met à jour toutes les dépendances jusqu'à une pronfondeur de 100 sous-dossiers
pnpm --recursive update --depth 100
# met à jour la dépendance typescript à sa dernière version de manière récursive
pnpm --recursive update typescript@latest
--latest, -L
Update the dependencies to their latest stable version as determined by their latest
tags (potentially upgrading the packages across major versions) as long as the version range specified in package.json
is lower than the latest
tag (i.e. it will not downgrade prereleases).
--global, -g
Met à jour les dépendances globales.
--workspace
Tries to link all packages from the workspace. Versions are updated to match the versions of packages inside the workspace.
If specific packages are updated, the command will fail if any of the updated dependencies are not found inside the workspace. For instance, the following command fails if express
is not a workspace package:
pnpm up -r --workspace express
--prod, -P
Only update packages in dependencies
and optionalDependencies
.
--dev, -D
Only update packages in devDependencies
.
--no-optional
Don't update packages in optionalDependencies
.
--interactive, -i
Show outdated dependencies and select which ones to update.