diff options
author | 2023-01-13 11:27:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:27:16 -0800 | |
commit | 996ef44c021a692403082c70e0eedc2ce1696eff (patch) | |
tree | a2d238991ca017a30ffa01e2cc005f802cbac15f /src/bun_js.zig | |
parent | 734b5b89da07fa074ea1c2a1013f32a56fc58637 (diff) | |
download | bun-996ef44c021a692403082c70e0eedc2ce1696eff.tar.gz bun-996ef44c021a692403082c70e0eedc2ce1696eff.tar.zst bun-996ef44c021a692403082c70e0eedc2ce1696eff.zip |
Split some things into more files and use bun namespace instead of import more
Diffstat (limited to 'src/bun_js.zig')
-rw-r--r-- | src/bun_js.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun_js.zig b/src/bun_js.zig index 92f78f404..061c03771 100644 --- a/src/bun_js.zig +++ b/src/bun_js.zig @@ -24,7 +24,7 @@ const Api = @import("api/schema.zig").Api; const resolve_path = @import("./resolver/resolve_path.zig"); const configureTransformOptionsForBun = @import("./bun.js/config.zig").configureTransformOptionsForBun; const Command = @import("cli.zig").Command; -const bundler = @import("bundler.zig"); +const bundler = bun.bundler; const NodeModuleBundle = @import("node_module_bundle.zig").NodeModuleBundle; const DotEnv = @import("env_loader.zig"); const which = @import("which.zig").which; |