Перейти до основного змісту
Версія: 9.x

pnpm update

Aliases: up, upgrade

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

Якщо використовується без аргументів, оновлює всі залежності.

TL;DR

КомандаЗначення
pnpm upUpdates all dependencies, adhering to ranges specified in package.json
pnpm up --latestОновлює всі залежності до їх останніх версій
pnpm up foo@2Updates foo to the latest version on v2
pnpm up "@babel/*"Updates all dependencies under the @babel scope

Вибір залежностей з шаблонами

Ви можете використовувати шаблони для оновлення певних залежностей.

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"

Параметри

--recursive, -r

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

Приклад використання:

pnpm --recursive update
# оновлює всі пакунки на глибину до 100 підтек
pnpm --recursive update --depth 100
# оновити typescript до останньої версії у кожному пакунку
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

Оновлює глобальні пакунки.

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

Показати застарілі залежності та вибрати, які з них оновити.

--no-save

Don't update the ranges in package.json.

--filter <package_selector>

Read more about filtering.