File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -39,17 +39,16 @@ This will generate new reports from the same results json.
39
39
40
40
``` sh
41
41
# capture some results first:
42
- lighthouse --output=json http://example.com > temp.report.json
42
+ lighthouse http://example.com --output=json > temp.report.json
43
43
44
44
# quickly generate reports:
45
45
node generate_report.js > temp.report.html; open temp.report.html
46
46
```
47
47
``` js
48
48
// generate_report.js
49
- ' use strict' ;
50
49
51
- const ReportGenerator = require ( ' ./report/generator/report-generator.js' ) ;
52
- const results = require ( ' ./temp.report.json' ) ;
50
+ import { ReportGenerator } from ' ./report/generator/report-generator.js' ;
51
+ import results from ' ./temp.report.json' assert { type : ' json ' } ;
53
52
const html = ReportGenerator .generateReportHtml (results);
54
53
55
54
console .log (html);
You can’t perform that action at this time.
0 commit comments