HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

bun outdated — List dependencies that have newer versions available. More information: <https://bun.com/docs/pm/cli

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandbun outdatednewerdependenciesclithatlisthave

Problem

How to use the bun outdated command: List dependencies that have newer versions available. More information: <https://bun.com/docs/pm/cli/outdated>.

Solution

bun outdated — List dependencies that have newer versions available. More information: <https://bun.com/docs/pm/cli/outdated>.

List all outdated dependencies in the current project:
bun outdated


Check if a specific package is outdated:
bun outdated {{package}}


List outdated dependencies matching a glob pattern:
bun outdated "{{pattern}}"


Show outdated dependencies for specific workspaces:
bun outdated {{[-F|--filter]}} "{{workspace_pattern}}"


Recursively check all workspaces in a monorepo:
bun outdated {{[-r|--recursive]}}

Code Snippets

List all outdated dependencies in the current project

bun outdated

Check if a specific package is outdated

bun outdated {{package}}

List outdated dependencies matching a glob pattern

bun outdated "{{pattern}}"

Show outdated dependencies for specific workspaces

bun outdated {{[-F|--filter]}} "{{workspace_pattern}}"

Recursively check all workspaces in a monorepo

bun outdated {{[-r|--recursive]}}

Context

tldr-pages: common/bun outdated

Revisions (0)

No revisions yet.