diff options
author | 2023-08-11 22:13:46 -0700 | |
---|---|---|
committer | 2023-08-11 22:13:46 -0700 | |
commit | ca26780b276d32f761af37f113ca24aeeb41e92f (patch) | |
tree | c6127569c4ad0b74e6216f63f663ae44d058d9f3 /src/bunfig.zig | |
parent | 117cee5ca5c36f78ae75a0dee3178620bba73968 (diff) | |
download | bun-ca26780b276d32f761af37f113ca24aeeb41e92f.tar.gz bun-ca26780b276d32f761af37f113ca24aeeb41e92f.tar.zst bun-ca26780b276d32f761af37f113ca24aeeb41e92f.zip |
Deprecate loading `node_modules.bun` (#4131)
* Deprecate loading `node_modules.bun`
* realpath
* regenerate schema
* More
* more
* Update cli.zig
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bunfig.zig')
-rw-r--r-- | src/bunfig.zig | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bunfig.zig b/src/bunfig.zig index 050c603de..5594b570c 100644 --- a/src/bunfig.zig +++ b/src/bunfig.zig @@ -502,11 +502,6 @@ pub const Bunfig = struct { if (json.get("bundle")) |_bun| { if (comptime cmd == .DevCommand or cmd == .BuildCommand or cmd == .RunCommand or cmd == .AutoCommand or cmd == .BuildCommand) { - if (_bun.get("saveTo")) |file| { - try this.expect(file, .e_string); - this.bunfig.node_modules_bundle_path = try file.data.e_string.string(allocator); - } - if (_bun.get("outdir")) |dir| { try this.expect(dir, .e_string); this.bunfig.output_dir = try dir.data.e_string.string(allocator); |