pnpm outdated
古くなったパッケージを確認します。 引数(パターンも可) を指定することで、確認するパッケージを一部だけに制限することができます。
例:
pnpm outdated
pnpm outdated "*gulp-*" @babel/core
Options
--recursive, -r
サブディレクトリの全てのパッケージを対象に実行します。ワークスペース内で実行した場合は、ワークスペース内の全てのパッケージを対象に実行します。
--filter <package_selector>
--global, -g
古くなったグローバルパッケージを 一覧表示します。
--long
詳細を印刷表示します。
--format <format>
- Default: table
- Type: table, list, json
Prints the outdated dependencies in the given format.
--compatible
Prints only versions that satisfy specifications in package.json
.
--dev, -D
Checks only devDependencies
.
--prod, -P
Checks only dependencies
and optionalDependencies
.
--no-optional
Doesn't check optionalDependencies
.
--sort-by
Added in: v9.12.0
Specifies the order in which the output results are sorted. Currently only the value name
is accepted.