Passa al contenuto principale
Versione: 9.x

pnpm update

Aliases: up, upgrade

pnpm update updates packages to their latest version based on the specified range.

Se utilizzato senza argomenti, aggiorna tutte le dipendenze.

TL;DR

ComandoSignificato
pnpm upUpdates all dependencies, adhering to ranges specified in package.json
pnpm up --latestUpdates all dependencies to their latest versions
pnpm up foo@2Updates foo to the latest version on v2
pnpm up "@babel/*"Updates all dependencies under the @babel scope

Selezione delle dipendenze con i modelli

È possibile utilizzare i modelli per aggiornare dipendenze specifiche.

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"

Opzioni

--recursive, -r

Concurrently runs update in all subdirectories with a package.json (excluding node_modules).

Esempi di utilizzo:

pnpm --recursive update
# aggiorna tutti i pacchetti fino a 100 sottocartelle in profondità
pnpm --recursive update --depth 100
# aggiorna typescript all'ultima versione in ogni pacchetto
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

Aggiorna i pacchetti globali.

--workspace

Cerca di collegare tutti i pacchetti dallo spazio di lavoro. Le versioni vengono aggiornate per corrispondere a quelle dei pacchetti all'interno dello spazio di lavoro.

Se vengono aggiornati pacchetti specifici, il comando avrà esito negativo se una delle dipendenze aggiornate non viene trovata all'interno dello spazio di lavoro. 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

Mostra le dipendenze obsolete e seleziona quali aggiornare.

--filter <package_selector>

Read more about filtering.