We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf66d5 commit cb7e412Copy full SHA for cb7e412
pages/common/bun-outdated.md
@@ -0,0 +1,24 @@
1
+# bun outdated
2
+
3
+> List dependencies in your project that have newer versions available.
4
+> More information: <https://bun.com/docs/pm/cli/outdated>.
5
6
+- List all outdated dependencies in the current project:
7
8
+`bun outdated`
9
10
+- Check if a specific package is outdated:
11
12
+`bun outdated {{package}}`
13
14
+- List outdated dependencies matching a glob pattern:
15
16
+`bun outdated "{{pattern}}"`
17
18
+- Show outdated dependencies for specific workspaces:
19
20
+`bun outdated --filter "{{workspace_pattern}}"`
21
22
+- Recursively check all workspaces in a monorepo:
23
24
+`bun outdated --recursive`
0 commit comments