diff options
author | 2022-11-29 02:42:56 -0800 | |
---|---|---|
committer | 2022-11-29 02:42:56 -0800 | |
commit | b631ea7d725a42954c577ea686ae711ef04f63e1 (patch) | |
tree | 37852a650a0ec02fd6042919dc476c7dab550529 /src/bunfig.zig | |
parent | 7b59d9d97c4d4543d8fe2a2222781d7b89539fc2 (diff) | |
download | bun-b631ea7d725a42954c577ea686ae711ef04f63e1.tar.gz bun-b631ea7d725a42954c577ea686ae711ef04f63e1.tar.zst bun-b631ea7d725a42954c577ea686ae711ef04f63e1.zip |
import everything from "bun" where possible
Diffstat (limited to 'src/bunfig.zig')
-rw-r--r-- | src/bunfig.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bunfig.zig b/src/bunfig.zig index d2ca86380..f29533a7e 100644 --- a/src/bunfig.zig +++ b/src/bunfig.zig @@ -1,5 +1,5 @@ const std = @import("std"); -const bun = @import("./global.zig"); +const bun = @import("bun"); const string = bun.string; const Output = bun.Output; const Global = bun.Global; @@ -11,7 +11,7 @@ const default_allocator = bun.default_allocator; const URL = @import("./url.zig").URL; const C = bun.C; const options = @import("./options.zig"); -const logger = @import("./logger.zig"); +const logger = @import("bun").logger; const js_ast = @import("./js_ast.zig"); const js_lexer = @import("./js_lexer.zig"); const Defines = @import("./defines.zig"); |