lighthouse 9.3.0 → 9.3.1
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/changelog.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
<a name="9.3.1"></a>
|
|
2
|
+
# 9.3.1 (2022-01-31)
|
|
3
|
+
[Full Changelog](https://github.com/compare/v9.3.0...v9.3.1)
|
|
4
|
+
|
|
5
|
+
## Report
|
|
6
|
+
|
|
7
|
+
* disable fireworks with flag ([#13610](https://github.com/GoogleChrome/lighthouse/pull/13610))
|
|
8
|
+
|
|
1
9
|
<a name="9.3.0"></a>
|
|
2
10
|
# 9.3.0 (2022-01-31)
|
|
3
11
|
[Full Changelog](https://github.com/compare/v9.2.0...v9.3.0)
|
|
@@ -5740,7 +5740,7 @@ class ReportUIFeatures {
|
|
|
5740
5740
|
const cat = lhr.categories[id];
|
|
5741
5741
|
return cat && cat.score === 1;
|
|
5742
5742
|
});
|
|
5743
|
-
if (scoresAll100) {
|
|
5743
|
+
if (scoresAll100 && !this._opts.disableAutoDarkModeAndFireworks) {
|
|
5744
5744
|
turnOffTheLights = true;
|
|
5745
5745
|
this._enableFireworks();
|
|
5746
5746
|
}
|