aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/config.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2023-08-11 22:13:46 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-11 22:13:46 -0700
commitca26780b276d32f761af37f113ca24aeeb41e92f (patch)
treec6127569c4ad0b74e6216f63f663ae44d058d9f3 /src/bun.js/config.zig
parent117cee5ca5c36f78ae75a0dee3178620bba73968 (diff)
downloadbun-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/bun.js/config.zig')
-rw-r--r--src/bun.js/config.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bun.js/config.zig b/src/bun.js/config.zig
index 6e304d526..f95146c6d 100644
--- a/src/bun.js/config.zig
+++ b/src/bun.js/config.zig
@@ -13,7 +13,6 @@ const std = @import("std");
const Fs = @import("../fs.zig");
const resolver = @import("../resolver/resolver.zig");
const ast = @import("../import_record.zig");
-const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle;
const logger = @import("root").bun.logger;
const Api = @import("../api/schema.zig").Api;
const options = @import("../options.zig");
@@ -36,7 +35,6 @@ pub fn configureTransformOptionsForBunVM(allocator: std.mem.Allocator, _args: Ap
// args.serve = false;
args.write = false;
args.resolve = Api.ResolveMode.lazy;
- args.generate_node_module_bundle = false;
return try configureTransformOptionsForBun(allocator, args);
}