aboutsummaryrefslogtreecommitdiff
path: root/src/install
diff options
context:
space:
mode:
Diffstat (limited to 'src/install')
-rw-r--r--src/install/install.zig2
-rw-r--r--src/install/lockfile.zig2
-rw-r--r--src/install/npm.zig2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/install/install.zig b/src/install/install.zig
index 9fbd4f773..4aca9fc60 100644
--- a/src/install/install.zig
+++ b/src/install/install.zig
@@ -36,7 +36,7 @@ const FileSystem = Fs.FileSystem;
const Lock = @import("../lock.zig").Lock;
var path_buf: [bun.MAX_PATH_BYTES]u8 = undefined;
var path_buf2: [bun.MAX_PATH_BYTES]u8 = undefined;
-const URL = @import("../query_string_map.zig").URL;
+const URL = @import("../url.zig").URL;
const AsyncHTTP = @import("http").AsyncHTTP;
const HTTPChannel = @import("http").HTTPChannel;
const NetworkThread = @import("http").NetworkThread;
diff --git a/src/install/lockfile.zig b/src/install/lockfile.zig
index 3a342498a..30b1b10b0 100644
--- a/src/install/lockfile.zig
+++ b/src/install/lockfile.zig
@@ -36,7 +36,7 @@ const FileSystem = Fs.FileSystem;
const Lock = @import("../lock.zig").Lock;
var path_buf: [bun.MAX_PATH_BYTES]u8 = undefined;
var path_buf2: [bun.MAX_PATH_BYTES]u8 = undefined;
-const URL = @import("../query_string_map.zig").URL;
+const URL = @import("../url.zig").URL;
const AsyncHTTP = @import("http").AsyncHTTP;
const HTTPChannel = @import("http").HTTPChannel;
const NetworkThread = @import("http").NetworkThread;
diff --git a/src/install/npm.zig b/src/install/npm.zig
index 2dcc94686..ac12cc942 100644
--- a/src/install/npm.zig
+++ b/src/install/npm.zig
@@ -1,4 +1,4 @@
-const URL = @import("../query_string_map.zig").URL;
+const URL = @import("../url.zig").URL;
const std = @import("std");
const MutableString = @import("../string_mutable.zig").MutableString;
const Semver = @import("./semver.zig");