Split some things into more files and use bun namespace instead of import more

This commit is contained in:
Jarred SUmner
2023-01-13 11:27:16 -08:00
parent 734b5b89da
commit 996ef44c02
36 changed files with 4943 additions and 4777 deletions

View File

@@ -25,7 +25,7 @@ const Api = @import("../api/schema.zig").Api;
const resolve_path = @import("../resolver/resolve_path.zig");
const configureTransformOptionsForBun = @import("../bun.js/config.zig").configureTransformOptionsForBun;
const Command = @import("../cli.zig").Command;
const bundler = @import("../bundler.zig");
const bundler = bun.bundler;
const NodeModuleBundle = @import("../node_module_bundle.zig").NodeModuleBundle;
const DotEnv = @import("../env_loader.zig");
const which = @import("../which.zig").which;