mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
make debug build logs less noisy
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user