import everything from "bun" where possible

This commit is contained in:
Jarred Sumner
2022-11-29 02:42:56 -08:00
parent 7b59d9d97c
commit b631ea7d72
161 changed files with 621 additions and 739 deletions

View File

@@ -1,6 +1,6 @@
const std = @import("std");
const Command = @import("../cli.zig").Command;
const bun = @import("../global.zig");
const bun = @import("bun");
const string = bun.string;
const Output = bun.Output;
const Global = bun.Global;
@@ -12,7 +12,7 @@ const default_allocator = bun.default_allocator;
const C = bun.C;
const lex = @import("../js_lexer.zig");
const logger = @import("../logger.zig");
const logger = @import("bun").logger;
const options = @import("../options.zig");
const js_parser = @import("../js_parser.zig");
@@ -20,7 +20,7 @@ const json_parser = @import("../json_parser.zig");
const js_printer = @import("../js_printer.zig");
const js_ast = @import("../js_ast.zig");
const linker = @import("../linker.zig");
const panicky = @import("../panic_handler.zig");
const sync = @import("../sync.zig");
const Api = @import("../api/schema.zig").Api;
const resolve_path = @import("../resolver/resolve_path.zig");