diff --git a/src/cli/prune_command.zig b/src/cli/prune_command.zig index c453112465..6b53446b7c 100644 --- a/src/cli/prune_command.zig +++ b/src/cli/prune_command.zig @@ -61,7 +61,7 @@ pub const PruneCommand = struct { const node_modules_path = try std.fmt.bufPrint(&node_modules_buf, "{s}/node_modules", .{cwd}); // Get the list of packages that should exist according to the lockfile - var expected_packages = std.StringHashMap(void).init(allocator); + var expected_packages = bun.StringHashMap(void).init(allocator); defer expected_packages.deinit(); // Add all packages that are actually used/installed