aboutsummaryrefslogtreecommitdiff
path: root/src/options.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-04-19 00:01:27 -0700
commitea47ed0ee5969d31e03c55ba3bc384466615e513 (patch)
treef7e40627a41bfbdb626ed4d9fd2fe9adb26710df /src/options.zig
parent36f9fd607a238fc029d64cc27a26b203a856cbbd (diff)
downloadbun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.gz
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.tar.zst
bun-ea47ed0ee5969d31e03c55ba3bc384466615e513.zip
Fix broken autocomplete
Diffstat (limited to 'src/options.zig')
-rw-r--r--src/options.zig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/options.zig b/src/options.zig
index 1e296a4fb..4d03e8abf 100644
--- a/src/options.zig
+++ b/src/options.zig
@@ -1,7 +1,7 @@
/// This file is mostly the API schema but with all the options normalized.
/// Normalization is necessary because most fields in the API schema are optional
const std = @import("std");
-const logger = @import("bun").logger;
+const logger = @import("root").bun.logger;
const Fs = @import("fs.zig");
const resolver = @import("./resolver/resolver.zig");
@@ -12,7 +12,7 @@ const resolve_path = @import("./resolver/resolve_path.zig");
const NodeModuleBundle = @import("./node_module_bundle.zig").NodeModuleBundle;
const URL = @import("./url.zig").URL;
const ConditionsMap = @import("./resolver/package_json.zig").ESModule.ConditionsMap;
-const bun = @import("bun");
+const bun = @import("root").bun;
const string = bun.string;
const Output = bun.Output;
const Global = bun.Global;
@@ -24,7 +24,7 @@ const stringZ = bun.stringZ;
const default_allocator = bun.default_allocator;
const C = bun.C;
const StoredFileDescriptorType = bun.StoredFileDescriptorType;
-const JSC = @import("bun").JSC;
+const JSC = @import("root").bun.JSC;
const Runtime = @import("./runtime.zig").Runtime;
const Analytics = @import("./analytics/analytics_thread.zig");
const MacroRemap = @import("./resolver/package_json.zig").MacroMap;