mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
526 B
Plaintext
27 lines
526 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# bun unlink
|
|
|
|
> Unregister the current directory as a linkable package.
|
|
> See also: `bun link`.
|
|
> More information: <https://bun.com/docs/pm/cli/link#unlinking>.
|
|
|
|
- Unregister the current package globally:
|
|
|
|
`bun unlink`
|
|
|
|
- Unregister a package in a specific directory:
|
|
|
|
`bun unlink --cwd {{path/to/package}}`
|
|
|
|
- Perform a dry run without actually unregistering:
|
|
|
|
`bun unlink --dry-run`
|
|
|
|
- Display help:
|
|
|
|
`bun unlink {{[-h|--help]}}`
|