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.js/module_loader.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/bun.js/module_loader.zig')
-rw-r--r-- | src/bun.js/module_loader.zig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/bun.js/module_loader.zig b/src/bun.js/module_loader.zig index e4ee611cf..dc4b156f7 100644 --- a/src/bun.js/module_loader.zig +++ b/src/bun.js/module_loader.zig @@ -22,14 +22,14 @@ const Fs = @import("../fs.zig"); const Resolver = @import("../resolver/resolver.zig"); const ast = @import("../import_record.zig"); const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle; -const MacroEntryPoint = @import("../bundler.zig").MacroEntryPoint; -const ParseResult = @import("../bundler.zig").ParseResult; +const MacroEntryPoint = bun.bundler.MacroEntryPoint; +const ParseResult = bun.bundler.ParseResult; const logger = @import("bun").logger; const Api = @import("../api/schema.zig").Api; const options = @import("../options.zig"); -const Bundler = @import("../bundler.zig").Bundler; -const PluginRunner = @import("../bundler.zig").PluginRunner; -const ServerEntryPoint = @import("../bundler.zig").ServerEntryPoint; +const Bundler = bun.Bundler; +const PluginRunner = bun.bundler.PluginRunner; +const ServerEntryPoint = bun.bundler.ServerEntryPoint; const js_printer = @import("../js_printer.zig"); const js_parser = @import("../js_parser.zig"); const js_ast = @import("../js_ast.zig"); |