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

bun unlink — Unregister the current directory as a linkable package. See also: `bun link`. More information: <htt

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecurrentdirectorycommandlinkableclibun unlinkunregister

Problem

How to use the bun unlink command: Unregister the current directory as a linkable package. See also: bun link. More information: <https://bun.com/docs/pm/cli/link#unlinking>.

Solution

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]}}

Code Snippets

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]}}

Context

tldr-pages: common/bun unlink

Revisions (0)

No revisions yet.