Skip to content

Commit abeca8a

Browse files
author
Ian McNally
committed
Color the named processes as cyan in terminal output
1 parent dc824f5 commit abeca8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-scripts/scripts/start.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ detect(DEFAULT_PORT).then(port => {
282282
var existingProcess = getProcessNameOnPort(DEFAULT_PORT);
283283
var question =
284284
chalk.yellow('Something is already running on port ' + DEFAULT_PORT + '.' +
285-
((existingProcess) ? ' Probably:\n ' + existingProcess : '')) +
285+
((existingProcess) ? ' Probably:\n ' + chalk.cyan(existingProcess) : '')) +
286286
'\n\nWould you like to run the app on another port instead?';
287287

288288
prompt(question, true).then(shouldChangePort => {

0 commit comments

Comments
 (0)