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

bun pm trust — Mark dependencies as trusted. See also: `bun pm untrusted`. More information: <https://bun.com/docs/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
trustedcommanddependenciesclibun pm trustseemarkalso

Problem

How to use the bun pm trust command: Mark dependencies as trusted. See also: bun pm untrusted. More information: <https://bun.com/docs/pm/cli/pm#trust>.

Solution

bun pm trust — Mark dependencies as trusted. See also: bun pm untrusted. More information: <https://bun.com/docs/pm/cli/pm#trust>.

Trust a specific dependency and add it to trustedDependencies:
bun pm trust {{dependency_name}}


Trust all currently untrusted dependencies:
bun pm trust --all

Code Snippets

Trust a specific dependency and add it to `trustedDependencies`

bun pm trust {{dependency_name}}

Trust all currently untrusted dependencies

bun pm trust --all

Context

tldr-pages: common/bun pm trust

Revisions (0)

No revisions yet.