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.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 '')
-rw-r--r-- | src/bun.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bun.zig b/src/bun.zig index 732862e8f..b8ffba410 100644 --- a/src/bun.zig +++ b/src/bun.zig @@ -729,7 +729,8 @@ pub const CLI = @import("./cli.zig"); pub const PackageManager = @import("./install/install.zig").PackageManager; pub const fs = @import("./fs.zig"); -pub const Bundler = @import("./bundler.zig").Bundler; +pub const Bundler = bundler.Bundler; +pub const bundler = @import("./bundler.zig"); pub const which = @import("./which.zig").which; pub const json = @import("./json_parser.zig"); |