pnpm update
Aliases: up
, upgrade
pnpm update
updates packages to their latest version based on the specified
range.
인수 없이 사용하면, 모든 의존성을 업데이트합니다.
요약
명령어 | 의미 |
---|---|
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
패턴을 사용하여 특정 의존성을 업데이트할 수 있습니다.
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
# 모든 패키지의 타입스크립트를 최신 버전으로 업데이트합니다.
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
오래된 의존성을 표시하고 업데이트할 의존성을 선택합니다.