aboutsummaryrefslogtreecommitdiff
path: root/src/bunfig.zig
diff options
context:
space:
mode:
authorGravatar Nathan Hammond <github.com@nathanhammond.com> 2023-09-14 13:32:03 +0800
committerGravatar GitHub <noreply@github.com> 2023-09-13 22:32:03 -0700
commit8ae9aeea6becd8e34c45885943cfe3643beb68c9 (patch)
treece92b57eb5a9089b1bf31264d03d31d7abe49367 /src/bunfig.zig
parent4ebed280dc5532b93c1e28ad0b33a7a315ab3b65 (diff)
downloadbun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.tar.gz
bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.tar.zst
bun-8ae9aeea6becd8e34c45885943cfe3643beb68c9.zip
Remove the ability to configure lockfile. (#5335)
Diffstat (limited to 'src/bunfig.zig')
-rw-r--r--src/bunfig.zig12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/bunfig.zig b/src/bunfig.zig
index 76f33cb82..02825d2b5 100644
--- a/src/bunfig.zig
+++ b/src/bunfig.zig
@@ -392,18 +392,6 @@ pub const Bunfig = struct {
install.save_lockfile = value;
}
}
-
- if (lockfile_expr.get("path")) |lockfile| {
- if (lockfile.asString(allocator)) |value| {
- install.lockfile_path = value;
- }
- }
-
- if (lockfile_expr.get("savePath")) |lockfile| {
- if (lockfile.asString(allocator)) |value| {
- install.save_lockfile_path = value;
- }
- }
}
if (_bun.get("optional")) |optional| {