Refactor Zig imports and file structure (part 1) (#21270)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
taylor.fish
2025-07-22 17:51:38 -07:00
committed by GitHub
parent 73d92c7518
commit 07cd45deae
564 changed files with 9917 additions and 9697 deletions

View File

@@ -88,10 +88,11 @@ pub fn contentsFromPath(path: string) ?string {
return null;
}
const string = []const u8;
const Fs = @import("./fs.zig");
const std = @import("std");
const PackageJSON = @import("./resolver/package_json.zig").PackageJSON;
const string = @import("./string_types.zig").string;
const bun = @import("bun");
const Environment = bun.Environment;