Skip to content

Commit c2a4054

Browse files
committed
fix fmt
1 parent 24a2adc commit c2a4054

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

backend/instance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
});

backend/run.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)