lighthouse 11.5.0-dev.20240125 → 11.5.0-dev.20240127

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.
@@ -33,7 +33,10 @@ import {Sentry} from '../lib/sentry.js';
33
33
  * @param {Error} error
34
34
  */
35
35
  function createDependencyError(dependency, error) {
36
- return new Error(`Dependency "${dependency.id}" failed with exception: ${error.message}`);
36
+ const err = new Error(`Dependency "${dependency.id}" failed with exception: ${error.message}`);
37
+ // @ts-expect-error - We already reported the original error to Sentry, don't do it again.
38
+ err.expected = true;
39
+ return err;
37
40
  }
38
41
 
39
42
  /** @return {ArtifactState} */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "11.5.0-dev.20240125",
4
+ "version": "11.5.0-dev.20240127",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {