File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2121 },
2222 "private" : true ,
2323 "engines" : {
24- "node" : " >=18 "
24+ "node" : " >=20 "
2525 },
2626 "dependencies" : {
2727 "@angular/animations" : " 17.3.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" ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import {DetailsComponent as LsMonitorDetailsComponent} from "./ls-monitor/detail
1818
1919import { ObjectHighlightPipe } from "./ls-monitor/object-highlight.pipe" ;
2020
21- import hljs from 'highlight.js/lib/core' ;
21+ import hljs from 'highlight.js'
2222import json from 'highlight.js/lib/languages/json' ;
2323
2424@NgModule ( {
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments