diff options
author | 2023-04-19 00:01:27 -0700 | |
---|---|---|
committer | 2023-04-19 00:01:27 -0700 | |
commit | ea47ed0ee5969d31e03c55ba3bc384466615e513 (patch) | |
tree | f7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/bun_js.zig | |
parent | 36f9fd607a238fc029d64cc27a26b203a856cbbd (diff) | |
download | bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip |
Fix broken autocomplete
Diffstat (limited to 'src/bun_js.zig')
-rw-r--r-- | src/bun_js.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bun_js.zig b/src/bun_js.zig index 2797096bc..8d725cbae 100644 --- a/src/bun_js.zig +++ b/src/bun_js.zig @@ -1,4 +1,4 @@ -const bun = @import("bun"); +const bun = @import("root").bun; const string = bun.string; const Output = bun.Output; const Global = bun.Global; @@ -11,7 +11,7 @@ const C = bun.C; const std = @import("std"); const lex = bun.js_lexer; -const logger = @import("bun").logger; +const logger = @import("root").bun.logger; const options = @import("options.zig"); const js_parser = bun.js_parser; const json_parser = bun.JSON; @@ -28,8 +28,8 @@ const bundler = bun.bundler; const NodeModuleBundle = @import("node_module_bundle.zig").NodeModuleBundle; const DotEnv = @import("env_loader.zig"); const which = @import("which.zig").which; -const JSC = @import("bun").JSC; -const AsyncHTTP = @import("bun").HTTP.AsyncHTTP; +const JSC = @import("root").bun.JSC; +const AsyncHTTP = @import("root").bun.HTTP.AsyncHTTP; const Arena = @import("./mimalloc_arena.zig").Arena; const OpaqueWrap = JSC.OpaqueWrap; |