File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ async function start() {
152
152
*
153
153
* If only `--port` is provided then connect to that port.
154
154
*
155
- * In absence of specified ports, connect to port 8000 .
155
+ * In absence of specified ports, connect to port 3000 .
156
156
* @param {string | undefined } strPort
157
157
* @param {string | undefined } strPickPort
158
158
* @returns {Promise<number> }
@@ -166,7 +166,7 @@ async function parsePort(strPort, strPickPort) {
166
166
if ( ! isNaN ( port ) ) {
167
167
specificPort = port ;
168
168
} else {
169
- console . log ( 'Port is not a number, will default to 8000 if no pick-port is given.' ) ;
169
+ console . log ( 'Port is not a number, will default to 3000 if no pick-port is given.' ) ;
170
170
}
171
171
}
172
172
@@ -181,18 +181,18 @@ async function parsePort(strPort, strPickPort) {
181
181
return await findFreePort ( start , start , end ) ;
182
182
}
183
183
} else {
184
- console . log ( 'Port range are not numbers, using 8000 instead.' ) ;
184
+ console . log ( 'Port range are not numbers, using 3000 instead.' ) ;
185
185
}
186
186
} else {
187
- console . log ( `Port range: "${ strPickPort } " is not properly formatted, using 8000 instead.` ) ;
187
+ console . log ( `Port range: "${ strPickPort } " is not properly formatted, using 3000 instead.` ) ;
188
188
}
189
189
}
190
190
191
191
if ( specificPort !== - 1 ) {
192
192
return specificPort ;
193
193
}
194
194
195
- return 8000 ;
195
+ return 3000 ;
196
196
}
197
197
198
198
/**
You can’t perform that action at this time.
0 commit comments