aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-12 05:41:35 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-12 05:41:35 -0800
commit272f1dea33b9f55db513b86770a26323ca61094d (patch)
tree16aaa71c787c38286807d5c85dc98db7c457e9ec /README.md
parentb4c50d1d2894c8d9dce9a236a218b5ebb590b42a (diff)
downloadbun-272f1dea33b9f55db513b86770a26323ca61094d.tar.gz
bun-272f1dea33b9f55db513b86770a26323ca61094d.tar.zst
bun-272f1dea33b9f55db513b86770a26323ca61094d.zip
Update README.md
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;
}
```