Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-08 00:19:07 +00:00
parent ba165f8d8e
commit 9dd7a2e5d6
15 changed files with 268 additions and 7 deletions

33
tldr/bun-link Normal file
View File

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