snippetbashTip
bun unlink — Unregister the current directory as a linkable package. See also: `bun link`. More information: <htt
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 unlinkUnregister a package in a specific directory:
bun unlink --cwd {{path/to/package}}Perform a dry run without actually unregistering:
bun unlink --dry-runDisplay help:
bun unlink {{[-h|--help]}}Code Snippets
Unregister the current package globally
bun unlinkUnregister a package in a specific directory
bun unlink --cwd {{path/to/package}}Perform a dry run without actually unregistering
bun unlink --dry-runDisplay help
bun unlink {{[-h|--help]}}Context
tldr-pages: common/bun unlink
Revisions (0)
No revisions yet.