diff options
author | 2022-02-12 05:41:35 -0800 | |
---|---|---|
committer | 2022-02-12 05:41:35 -0800 | |
commit | 272f1dea33b9f55db513b86770a26323ca61094d (patch) | |
tree | 16aaa71c787c38286807d5c85dc98db7c457e9ec /README.md | |
parent | b4c50d1d2894c8d9dce9a236a218b5ebb590b42a (diff) | |
download | bun-272f1dea33b9f55db513b86770a26323ca61094d.tar.gz bun-272f1dea33b9f55db513b86770a26323ca61094d.tar.zst bun-272f1dea33b9f55db513b86770a26323ca61094d.zip |
Update README.md
Diffstat (limited to '')
-rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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; } ``` |