mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-24 18:52:17 +00:00
19 lines
406 B
Plaintext
19 lines
406 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|