lighthouse 9.5.0-dev.20220630 → 9.5.0-dev.20220703

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lighthouse",
3
- "version": "9.5.0-dev.20220630",
3
+ "version": "9.5.0-dev.20220703",
4
4
  "description": "Automated auditing, performance metrics, and best practices for the web.",
5
5
  "main": "./lighthouse-core/index.js",
6
6
  "bin": {
@@ -9,6 +9,6 @@ See `lighthouse-core/test/chromium-web-tests/README.md` for more.
9
9
  ## Sync
10
10
 
11
11
  ```sh
12
- rsync -ahvz --exclude='OWNERS' --exclude='BUILD.gn' ~/src/devtools/devtools-frontend/test/e2e/lighthouse/ third-party/devtools-tests/e2e/lighthouse/
13
- rsync -ahvz --exclude='OWNERS' --exclude='BUILD.gn' ~/src/devtools/devtools-frontend/test/e2e/resources/lighthouse/ third-party/devtools-tests/e2e/resources/lighthouse/
12
+ rsync -ahvz --exclude='OWNERS' ~/src/devtools/devtools-frontend/test/e2e/lighthouse/ third-party/devtools-tests/e2e/lighthouse/
13
+ rsync -ahvz --exclude='OWNERS' ~/src/devtools/devtools-frontend/test/e2e/resources/lighthouse/ third-party/devtools-tests/e2e/resources/lighthouse/
14
14
  ```
@@ -0,0 +1,17 @@
1
+ # Copyright 2020 The Chromium Authors. All rights reserved.
2
+ # Use of this source code is governed by a BSD-style license that can be
3
+ # found in the LICENSE file.
4
+
5
+ import("../../../third_party/typescript/typescript.gni")
6
+
7
+ node_ts_library("lighthouse") {
8
+ sources = [
9
+ "generate-report_test.ts",
10
+ "indexeddb-warning_test.ts",
11
+ ]
12
+
13
+ deps = [
14
+ "../../shared",
15
+ "../helpers",
16
+ ]
17
+ }
@@ -0,0 +1,9 @@
1
+ # Copyright 2022 The Chromium Authors. All rights reserved.
2
+ # Use of this source code is governed by a BSD-style license that can be
3
+ # found in the LICENSE file.
4
+
5
+ import("../../../../scripts/build/ninja/copy.gni")
6
+
7
+ copy_to_gen("lighthouse") {
8
+ sources = [ "lighthouse-storage.html" ]
9
+ }