File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
packages/react-scripts/scripts Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -281,10 +281,9 @@ detect(DEFAULT_PORT).then(port => {
281281 clearConsole ( ) ;
282282 var existingProcess = getProcessNameOnPort ( DEFAULT_PORT ) ;
283283 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?' ;
284+ chalk . yellow ( 'Something is already running on port ' + DEFAULT_PORT + '.' +
285+ ( ( existingProcess ) ? ' Probably:\n ' + existingProcess : '' ) ) +
286+ '\n\nWould you like to run the app on another port instead?' ;
288287
289288 prompt ( question , true ) . then ( shouldChangePort => {
290289 if ( shouldChangePort ) {
You can’t perform that action at this time.
0 commit comments