Skip to content

Commit 4edb1bd

Browse files
authored
Merge pull request #876 from Shopify/change-windowshide
Change windowsHide to false
2 parents b9fb6f3 + ca8141b commit 4edb1bd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changeset/pink-pens-trade.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@shopify/cli-kit': patch
3+
---
4+
5+
Fix CLI not killing Node processes after quitting `dev` on Windows

packages/cli-kit/src/system.ts

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ const buildExec = (command: string, args: string[], options?: ExecOptions): Exec
6868
stdin: options?.stdin,
6969
stdout: options?.stdout === 'inherit' ? 'inherit' : undefined,
7070
stderr: options?.stderr === 'inherit' ? 'inherit' : undefined,
71+
windowsHide: false,
7172
})
7273
debug(`
7374
Running system process:

0 commit comments

Comments
 (0)