lighthouse 9.5.0-dev.20221001 → 9.5.0-dev.20221003

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.
Files changed (2) hide show
  1. package/core/runner.js +1 -2
  2. package/package.json +1 -1
package/core/runner.js CHANGED
@@ -121,8 +121,7 @@ class Runner {
121
121
  // LHR has now been localized.
122
122
  const lhr = /** @type {LH.Result} */ (i18nLhr);
123
123
 
124
- // Save lhr to ./latest-run, but only if -GA is used.
125
- if (settings.gatherMode && settings.auditMode) {
124
+ if (settings.auditMode) {
126
125
  const path = Runner._getDataSavePath(settings);
127
126
  assetSaver.saveLhr(lhr, path);
128
127
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "9.5.0-dev.20221001",
4
+ "version": "9.5.0-dev.20221003",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {