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

bun update — Update dependencies in a Bun project. More information: <https://bun.com/docs/pm/cli/update>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandupdatebun updatedependenciesbunclimoreproject

Problem

How to use the bun update command: Update dependencies in a Bun project. More information: <https://bun.com/docs/pm/cli/update>.

Solution

bun update — Update dependencies in a Bun project. More information: <https://bun.com/docs/pm/cli/update>.

Update all dependencies:
bun update


Update to the latest version, regardless of its compatibility:
bun update --latest


Update a specific dependency:
bun update {{package_name}}


Update a dependency to a specific version:
bun update {{package_name}}@{{version}}


Update packages interactively:
bun update {{[-i|--interactive]}}


Update dependencies recursively across all workspaces:
bun update {{[-r|--recursive]}}


Update dependencies interactively and recursively:
bun update {{[-i|--interactive]}} {{[-r|--recursive]}}

Code Snippets

Update all dependencies

bun update

Update to the latest version, regardless of its compatibility

bun update --latest

Update a specific dependency

bun update {{package_name}}

Update a dependency to a specific version

bun update {{package_name}}@{{version}}

Update packages interactively

bun update {{[-i|--interactive]}}

Context

tldr-pages: common/bun update

Revisions (0)

No revisions yet.