diff options
author | 2023-01-13 11:27:16 -0800 | |
---|---|---|
committer | 2023-01-13 11:27:16 -0800 | |
commit | 996ef44c021a692403082c70e0eedc2ce1696eff (patch) | |
tree | a2d238991ca017a30ffa01e2cc005f802cbac15f /src/bundler/entry_points.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/bundler/entry_points.zig')
-rw-r--r-- | src/bundler/entry_points.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bundler/entry_points.zig b/src/bundler/entry_points.zig index e0e84ee8b..99ccb1372 100644 --- a/src/bundler/entry_points.zig +++ b/src/bundler/entry_points.zig @@ -4,7 +4,7 @@ const bun = @import("bun"); const string = bun.string; const Fs = @import("../fs.zig"); const js_ast = @import("../js_ast.zig"); -const Bundler = @import("../bundler.zig").Bundler; +const Bundler = bun.Bundler; const strings = bun.strings; pub const FallbackEntryPoint = struct { code_buffer: [8096]u8 = undefined, |