diff options
author | 2023-04-19 00:01:27 -0700 | |
---|---|---|
committer | 2023-04-19 00:01:27 -0700 | |
commit | ea47ed0ee5969d31e03c55ba3bc384466615e513 (patch) | |
tree | f7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/main_wasm.zig | |
parent | 36f9fd607a238fc029d64cc27a26b203a856cbbd (diff) | |
download | bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip |
Fix broken autocomplete
Diffstat (limited to 'src/main_wasm.zig')
-rw-r--r-- | src/main_wasm.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main_wasm.zig b/src/main_wasm.zig index ae7339cf5..b1cb14dc5 100644 --- a/src/main_wasm.zig +++ b/src/main_wasm.zig @@ -2,8 +2,8 @@ const JSParser = bun.js_parser; const JSPrinter = bun.js_printer; const JSAst = bun.JSAst; const Api = @import("./api/schema.zig").Api; -const Logger = @import("bun").logger; -const global = @import("bun"); +const Logger = @import("root").bun.logger; +const global = @import("root").bun; const default_allocator = global.default_allocator; const std = @import("std"); const Define = @import("./defines.zig"); |