Files
cheatsheet-tldr/tldr/bun-outdated
2026-01-06 00:22:28 +00:00

30 lines
657 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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]}}`