aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 105e03d22..98facddd1 100644
--- a/README.md
+++ b/README.md
@@ -732,6 +732,9 @@ path = "bun.lockb"
# Path to save bun.lockb to
savePath = "bun.lockb"
+# Save the lockfile to disk
+save = true
+
```
If it's easier to read as TypeScript types:
@@ -777,6 +780,7 @@ export interface Lockfile {
print: "yarn";
path: string;
savePath: string;
+ save: bool;
}
```