make debug build logs less noisy

This commit is contained in:
Jarred Sumner
2025-07-14 03:11:10 -07:00
parent e8289cc3ab
commit a102f85df2
2 changed files with 8 additions and 4 deletions

View File

@@ -32,8 +32,13 @@ const input = await file(join(root, "cmake", "Sources.json")).json();
const start = performance.now();
for (const item of input) {
await globSources(item.output, item.paths, item.exclude);
await globSources(item.output, item.paths, [
...(item.exclude || []),
"src/bun.js/bindings/GeneratedBindings.zig",
"src/bun.js/bindings/GeneratedJS2Native.zig",
]);
}
const end = performance.now();
const green = "\x1b[32m";