Skip to content

Commit

Permalink
Remove IPC support
Browse files Browse the repository at this point in the history
  • Loading branch information
Oded Goldglas committed Feb 25, 2024
1 parent 5c9b16f commit f5dd736
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/concurrently.spec.ts
Expand Up @@ -281,7 +281,7 @@ it('uses overridden raw option for each command if specified', () => {
expect(spawn).toHaveBeenCalledTimes(2);
expect(spawn).toHaveBeenCalledWith(
'echo',
expect.objectContaining({
expect.not.objectContaining({
stdio: expect.anything(),
}),
);
Expand Down
1 change: 0 additions & 1 deletion src/get-spawn-opts.ts
Expand Up @@ -39,7 +39,6 @@ export const getSpawnOpts = ({
env?: Record<string, unknown>;
}): SpawnOptions => ({
cwd: cwd || process.cwd(),
stdio: ['pipe', 'pipe', 'pipe', 'ipc'],
...(raw && { stdio: 'inherit' as const }),
...(/^win/.test(process.platform) && { detached: false }),
env: {
Expand Down

0 comments on commit f5dd736

Please sign in to comment.