Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Jan 21, 2025
1 parent 586ef4c commit 4353f99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"private": true,
"engines": {
"node": ">=18"
"node": ">=20"
},
"dependencies": {
"@angular/animations": "17.3.7",
Expand Down Expand Up @@ -53,7 +53,7 @@
"crypto-browserify": "3.12.0",
"filesize": "10.1.1",
"find-matching-bracket": "1.0.3",
"highlight.js": "11.9.0",
"highlight.js": "11.11.0",
"lodash-es": "4.17.21",
"luxon": "3.4.4",
"marked": "5.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/app/debug/debug.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {DetailsComponent as LsMonitorDetailsComponent} from "./ls-monitor/detail

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

import hljs from 'highlight.js/lib/core';
import hljs from 'highlight.js'
import json from 'highlight.js/lib/languages/json';

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion src/app/debug/ls-monitor/ls-monitor.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class LsMonitorComponent implements OnDestroy {
return;
}
this.isCapture = false;
this.messages = from(await readTextFileLines(selected.path)).pipe(
this.messages = from(await readTextFileLines(selected)).pipe(
map(line => JSON.parse(line) as MonitorMessage)
);
this.reload(this.messages);
Expand Down

0 comments on commit 4353f99

Please sign in to comment.