aboutsummaryrefslogtreecommitdiff
path: root/src/bundler/entry_points.zig
diff options
context:
space:
mode:
authorGravatar Jarred SUmner <jarred@jarredsumner.com> 2023-01-13 11:27:16 -0800
committerGravatar Jarred SUmner <jarred@jarredsumner.com> 2023-01-13 11:27:16 -0800
commit996ef44c021a692403082c70e0eedc2ce1696eff (patch)
treea2d238991ca017a30ffa01e2cc005f802cbac15f /src/bundler/entry_points.zig
parent734b5b89da07fa074ea1c2a1013f32a56fc58637 (diff)
downloadbun-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.zig2
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,