Skip to content

Commit

Permalink
fix(core): remove windowsHide from executor calls where we need the c…
Browse files Browse the repository at this point in the history
…trl + c handler
  • Loading branch information
MaxKless committed Oct 15, 2024
1 parent e0f9a5c commit 43d01c3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ Please update the local dependency on "${depName}" to be a valid semantic versio
env: processEnv(true),
cwd: context.root,
stdio: ['ignore', 'pipe', 'pipe'],
windowsHide: true,
});

const resultJson = JSON.parse(result.toString());
Expand All @@ -154,7 +153,6 @@ Please update the local dependency on "${depName}" to be a valid semantic versio
env: processEnv(true),
cwd: context.root,
stdio: 'ignore',
windowsHide: true,
});
console.log(
`Added the dist-tag ${tag} to v${currentVersion} for registry ${registry}.\n`
Expand Down Expand Up @@ -269,7 +267,6 @@ Please update the local dependency on "${depName}" to be a valid semantic versio
env: processEnv(true),
cwd: context.root,
stdio: ['ignore', 'pipe', 'pipe'],
windowsHide: true,
});

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,6 @@ function nodeProcess(
maxBuffer: LARGE_BUFFER,
env,
cwd,
windowsHide: true,
});

childProcesses.add(childProcess);
Expand Down
1 change: 0 additions & 1 deletion packages/nx/src/executors/run-script/run-script.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ function nodeProcess(
stdio: ['inherit', 'inherit', 'inherit'],
cwd,
env,
windowsHide: true,
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export async function playwrightExecutor(
execSync(`${pmc.exec} playwright install`, {
cwd: workspaceRoot,
stdio: 'inherit',
windowsHide: true,
});
}

Expand Down
1 change: 0 additions & 1 deletion packages/web/src/executors/file-server/file-server.impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ export default async function* fileServerExecutor(
execFileSync(pmCmd, args, {
stdio: [0, 1, 2],
shell: true,
windowsHide: true,
});
} catch {
throw new Error(
Expand Down

0 comments on commit 43d01c3

Please sign in to comment.