pnpm outdated
Checks for outdated packages. The check can be limited to a subset of the installed packages by providing arguments (patterns are supported).
Examples:
pnpm outdatedpnpm outdated "*gulp-*" @babel/core
#
Options#
--recursive, -rCheck for outdated dependencies in every package found in subdirectories, or in every workspace package when executed inside a workspace.
#
--filter <package_selector>#
--globalList outdated global packages.
#
--longAdded in: v4.0.0
Print details.
#
--no-tableAdded in: v4.0.0
Prints the outdated dependencies in a list format instead of the default table. Good for small consoles.
#
--compatibleAdded in: v4.7.0
Prints only versions that satisfy specifications in package.json
.
#
--dev, -DAdded in: v4.7.0
Checks only devDependencies
.
#
--prod, -PAdded in: v4.7.0
Checks only dependencies
and optionalDependencies
.
#
--no-optionalAdded in: v4.7.0
Doesn't check optionalDependencies
.