Skip to content

Commit

Permalink
Color the named processes as cyan in terminal output
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian McNally committed Oct 4, 2016
1 parent dc824f5 commit abeca8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ detect(DEFAULT_PORT).then(port => {
var existingProcess = getProcessNameOnPort(DEFAULT_PORT);
var question =
chalk.yellow('Something is already running on port ' + DEFAULT_PORT + '.' +
((existingProcess) ? ' Probably:\n ' + existingProcess : '')) +
((existingProcess) ? ' Probably:\n ' + chalk.cyan(existingProcess) : '')) +
'\n\nWould you like to run the app on another port instead?';

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

0 comments on commit abeca8a

Please sign in to comment.