Skip to content

Commit a2977ff

Browse files
authoredJan 27, 2023
docs: fix outdated code and command line in hacking tips (#14720)
1 parent 6de2ed2 commit a2977ff

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎docs/hacking-tips.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,16 @@ This will generate new reports from the same results json.
3939

4040
```sh
4141
# capture some results first:
42-
lighthouse --output=json http://example.com > temp.report.json
42+
lighthouse http://example.com --output=json > temp.report.json
4343

4444
# quickly generate reports:
4545
node generate_report.js > temp.report.html; open temp.report.html
4646
```
4747
```js
4848
// generate_report.js
49-
'use strict';
5049

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' };
5352
const html = ReportGenerator.generateReportHtml(results);
5453

5554
console.log(html);

0 commit comments

Comments
 (0)
Please sign in to comment.