/bun:outdated
Check which dependencies have newer versions available.
Execution
bun outdatedOutput Format
Shows table with:
- Package name
- Current version
- Wanted version (within semver range)
- Latest version
Follow-up Actions
Update within ranges:
bun updateUpdate to latest (ignore ranges):
bun update --latestInteractive update:
bun update --interactiveUpdate specific package:
bun update <package>Post-check
- Report count of outdated packages
- Highlight major version updates (breaking changes)
- Suggest
bun updateorbun update --latestbased on findings