bun-link: add page (#19161)

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
Sri Sethu Madhavan S
2025-11-07 23:56:40 +05:30
committed by GitHub
parent d0e3d5068d
commit 2eef7ec47f
+28
View File
@@ -0,0 +1,28 @@
# bun link
> Bun command to register the current package as a linkable package.
> More information: <https://bun.com/docs/pm/cli/link>.
- Link the package globally:
`bun link`
- Link a package locally to a project:
`bun link {{package_name}}`
- Link directly from a local path:
`bun link {{path/to/package}}`
- Unlink a package:
`bun unlink {{package_name}}`
- Unlink a global package:
`bun unlink --global {{package_name}}`
- Display help:
`bun link --help`