@jsenv/lighthouse-impact 4.0.5 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -79,7 +79,7 @@ export const lighthouseReport = await runLighthouseOnPlaywrightPage(page, {
79
79
  _index.html_
80
80
 
81
81
  ```html
82
- <!DOCTYPE html>
82
+ <!doctype html>
83
83
  <html>
84
84
  <head>
85
85
  <title>Title</title>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/lighthouse-impact",
3
- "version": "4.0.5",
3
+ "version": "4.1.0",
4
4
  "description": "Package description",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -38,8 +38,8 @@
38
38
  "@jsenv/abort": "4.2.4",
39
39
  "@jsenv/dynamic-import-worker": "1.1.0",
40
40
  "@jsenv/filesystem": "4.3.2",
41
- "@jsenv/github-pull-request-impact": "1.7.2",
42
- "@jsenv/log": "3.4.0",
43
- "lighthouse": "10.2.0"
41
+ "@jsenv/github-pull-request-impact": "1.7.3",
42
+ "@jsenv/log": "3.4.1",
43
+ "lighthouse": "11.1.0"
44
44
  }
45
45
  }
@@ -48,9 +48,8 @@ export const reportLighthouseImpactInGithubPullRequest = async ({
48
48
 
49
49
  collectInfo: async ({ execCommandInRootDirectory }) => {
50
50
  await execCommandInRootDirectory(installCommand);
51
- const lighthouseReport = await importOneExportFromFile(
52
- lighthouseReportUrl,
53
- );
51
+ const lighthouseReport =
52
+ await importOneExportFromFile(lighthouseReportUrl);
54
53
  return { version: 1, data: lighthouseReport };
55
54
  },
56
55
  commentIdentifier: `<!-- Generated by @jsenv/lighthouse-impact -->`,