Skip to content

Commit e088b5c

Browse files
committed
fixing build
1 parent 88dc86e commit e088b5c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"private": true,
2323
"engines": {
24-
"node": ">=18"
24+
"node": ">=20"
2525
},
2626
"dependencies": {
2727
"@angular/animations": "17.3.7",
@@ -53,7 +53,7 @@
5353
"crypto-browserify": "3.12.0",
5454
"filesize": "10.1.1",
5555
"find-matching-bracket": "1.0.3",
56-
"highlight.js": "11.9.0",
56+
"highlight.js": "11.11.0",
5757
"lodash-es": "4.17.21",
5858
"luxon": "3.4.4",
5959
"marked": "5.1.2",

src/app/debug/debug.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {DetailsComponent as LsMonitorDetailsComponent} from "./ls-monitor/detail
1818

1919
import {ObjectHighlightPipe} from "./ls-monitor/object-highlight.pipe";
2020

21-
import hljs from 'highlight.js/lib/core';
21+
import hljs from 'highlight.js'
2222
import json from 'highlight.js/lib/languages/json';
2323

2424
@NgModule({

src/app/debug/ls-monitor/ls-monitor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class LsMonitorComponent implements OnDestroy {
104104
return;
105105
}
106106
this.isCapture = false;
107-
this.messages = from(await readTextFileLines(selected.path)).pipe(
107+
this.messages = from(await readTextFileLines(selected)).pipe(
108108
map(line => JSON.parse(line) as MonitorMessage)
109109
);
110110
this.reload(this.messages);

0 commit comments

Comments
 (0)