We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc824f5 commit abeca8aCopy full SHA for abeca8a
packages/react-scripts/scripts/start.js
@@ -282,7 +282,7 @@ detect(DEFAULT_PORT).then(port => {
282
var existingProcess = getProcessNameOnPort(DEFAULT_PORT);
283
var question =
284
chalk.yellow('Something is already running on port ' + DEFAULT_PORT + '.' +
285
- ((existingProcess) ? ' Probably:\n ' + existingProcess : '')) +
+ ((existingProcess) ? ' Probably:\n ' + chalk.cyan(existingProcess) : '')) +
286
'\n\nWould you like to run the app on another port instead?';
287
288
prompt(question, true).then(shouldChangePort => {
0 commit comments