Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions browse/src/bun-polyfill.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ globalThis.Bun = {
timeout: options.timeout,
env: options.env,
cwd: options.cwd,
// Suppress the console window Windows allocates per child process;
// without this every spawn flashes a visible conhost window.
windowsHide: true,
});

return {
Expand All @@ -91,6 +94,9 @@ globalThis.Bun = {
stdio,
env: options.env,
cwd: options.cwd,
// Suppress the console window Windows allocates per child process;
// without this every spawn flashes a visible conhost window.
windowsHide: true,
});

return {
Expand Down