aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/config.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/bun.js/config.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/bun.js/config.zig')
-rw-r--r--src/bun.js/config.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/config.zig b/src/bun.js/config.zig
index ee3e30412..e237064a6 100644
--- a/src/bun.js/config.zig
+++ b/src/bun.js/config.zig
@@ -17,7 +17,7 @@ const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle;
const logger = @import("bun").logger;
const Api = @import("../api/schema.zig").Api;
const options = @import("../options.zig");
-const Bundler = @import("../bundler.zig").ServeBundler;
+const Bundler = bun.bundler.ServeBundler;
const js_printer = @import("../js_printer.zig");
const http = @import("../http.zig");