diff options
author | 2023-01-13 11:27:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:27:16 -0800 | |
commit | 996ef44c021a692403082c70e0eedc2ce1696eff (patch) | |
tree | a2d238991ca017a30ffa01e2cc005f802cbac15f /src/install | |
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/install')
-rw-r--r-- | src/install/install.zig | 2 | ||||
-rw-r--r-- | src/install/lockfile.zig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/install/install.zig b/src/install/install.zig index cd915a900..0b77bb2db 100644 --- a/src/install/install.zig +++ b/src/install/install.zig @@ -25,7 +25,7 @@ const Path = @import("../resolver/resolve_path.zig"); const configureTransformOptionsForBun = @import("../bun.js/config.zig").configureTransformOptionsForBun; const Command = @import("../cli.zig").Command; const BunArguments = @import("../cli.zig").Arguments; -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; diff --git a/src/install/lockfile.zig b/src/install/lockfile.zig index 29a5b8e50..8423e50ee 100644 --- a/src/install/lockfile.zig +++ b/src/install/lockfile.zig @@ -26,7 +26,7 @@ const Path = @import("../resolver/resolve_path.zig"); const configureTransformOptionsForBun = @import("../bun.js/config.zig").configureTransformOptionsForBun; const Command = @import("../cli.zig").Command; const BunArguments = @import("../cli.zig").Arguments; -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; |