We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e25f113 commit 03122b5Copy full SHA for 03122b5
packages/react-dev-utils/getProcessForPort.js
@@ -2,7 +2,14 @@ var chalk = require('chalk');
2
var execSync = require('child_process').execSync;
3
var path = require('path');
4
5
-var execOptions = { encoding: 'utf8' };
+var execOptions = {
6
+ encoding: 'utf8',
7
+ stdio: [
8
+ 'pipe', // stdin (default)
9
+ 'pipe', // stdout (default)
10
+ 'ignore' //stderr
11
+ ]
12
+};
13
14
function isProcessAReactApp(processCommand) {
15
return /^node .*react-scripts\/scripts\/start\.js\s?$/.test(processCommand);
0 commit comments