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