File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class Instance {
5454
5555 start ( ) {
5656 this . server = this . app . listen ( this . port , ( ) => {
57- if ( env [ ' NODE_DEBUG' ] ) {
57+ if ( env [ " NODE_DEBUG" ] ) {
5858 console . debug ( `Starting webxdc instance at port ${ this . port } ` ) ;
5959 }
6060 } ) ;
Original file line number Diff line number Diff line change @@ -36,12 +36,15 @@ async function actualRun(
3636 ) ;
3737
3838 frontend . listen ( options . basePort , ( ) => {
39- console . info ( `\n=> Started webxdc-dev frontend on ${ getInstanceUrl ( options . basePort ) } ` ) ;
39+ console . info (
40+ `\n=> Started webxdc-dev frontend on ${ getInstanceUrl ( options . basePort ) } ` ,
41+ ) ;
4042 } ) ;
4143
4244 instances . start ( ) ;
4345
44- if ( ! env [ "CODESPACE_NAME" ] ) { // do not auto open on gh codespace
46+ if ( ! env [ "CODESPACE_NAME" ] ) {
47+ // do not auto open on gh codespace
4548 open ( "http://localhost:" + options . basePort ) ;
4649 }
4750}
You can’t perform that action at this time.
0 commit comments