Split lockfile.zig into a more logical directory structure (#19858)

This commit is contained in:
Jarred Sumner
2025-05-22 21:11:54 -07:00
committed by GitHub
parent ef9ea8ae1c
commit bca833ad59
27 changed files with 6821 additions and 6513 deletions

View File

@@ -18,10 +18,12 @@ async function globSources(output, patterns, excludes = []) {
}
total += paths.length;
const sources = paths
.map(path => normalize(relative(root, path)))
.sort((a, b) => a.localeCompare(b))
.join("\n");
const sources =
paths
.map(path => normalize(relative(root, path)))
.sort((a, b) => a.localeCompare(b))
.join("\n")
.trim() + "\n";
await write(join(root, "cmake", "sources", output), sources);
}