aboutsummaryrefslogtreecommitdiff
path: root/docs/cli/bun-install.md
diff options
context:
space:
mode:
authorGravatar Tiago Teixeira <tiagocmtex@gmail.com> 2023-06-26 01:43:39 +0200
committerGravatar GitHub <noreply@github.com> 2023-06-25 16:43:39 -0700
commitd8817c2d32a237440a7677622ba351aa95f47c22 (patch)
tree7dd24039b7c56f0e59b14e3b3f2a6debc2ed8985 /docs/cli/bun-install.md
parent15ac08474ef0b18b94bbf4863b2497e18e968379 (diff)
downloadbun-d8817c2d32a237440a7677622ba351aa95f47c22.tar.gz
bun-d8817c2d32a237440a7677622ba351aa95f47c22.tar.zst
bun-d8817c2d32a237440a7677622ba351aa95f47c22.zip
Add support for install with --frozen-lockfile (#3365)
* Add support for install with --frozen-lockfile * Add test * Add test for frozenLockfile in config file
Diffstat (limited to 'docs/cli/bun-install.md')
-rw-r--r--docs/cli/bun-install.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/cli/bun-install.md b/docs/cli/bun-install.md
index 11cf3ee81..8050070be 100644
--- a/docs/cli/bun-install.md
+++ b/docs/cli/bun-install.md
@@ -47,6 +47,9 @@ registry = "https://registry.yarnpkg.com/"
# Install for production? This is the equivalent to the "--production" CLI argument
production = false
+# Disallow changes to lockfile? This is the equivalent to the "--fozen-lockfile" CLI argument
+frozenLockfile = false
+
# Don't actually install
dryRun = true
@@ -108,6 +111,7 @@ export interface Install {
scopes: Scopes;
registry: Registry;
production: boolean;
+ frozenLockfile: boolean;
dryRun: boolean;
optional: boolean;
dev: boolean;