lighthouse 13.4.1-dev.20260728 → 13.4.1-dev.20260810
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/build-tracker.config.js
CHANGED
|
@@ -6,7 +6,7 @@ module.exports = {
|
|
|
6
6
|
artifacts: [
|
|
7
7
|
'dist/lightrider/lighthouse-lr-bundle.js',
|
|
8
8
|
'dist/extension/scripts/lighthouse-ext-bundle.js',
|
|
9
|
-
'dist/lighthouse-dt-bundle.js',
|
|
9
|
+
'dist/devtools/lighthouse-dt-bundle.js',
|
|
10
10
|
'dist/gh-pages/viewer/src/bundled.js',
|
|
11
11
|
'dist/gh-pages/treemap/src/bundled.js',
|
|
12
12
|
'dist/lightrider/report-generator-bundle.js',
|
|
@@ -65,7 +65,7 @@ async function runBundledLighthouse(url, config, testRunnerOptions) {
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
// Load bundle, which creates a `global.runBundledLighthouse`.
|
|
68
|
-
await import(LH_ROOT + '/dist/lighthouse-dt-bundle.js');
|
|
68
|
+
await import(LH_ROOT + '/dist/devtools/lighthouse-dt-bundle.js');
|
|
69
69
|
|
|
70
70
|
global.require = originalRequire;
|
|
71
71
|
global.Buffer = originalBuffer;
|
|
@@ -54,7 +54,8 @@ async function runBundledLighthouse(url, config, testRunnerOptions) {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
// Load bundle.
|
|
57
|
-
const {navigation} =
|
|
57
|
+
const {navigation} =
|
|
58
|
+
await import(LH_ROOT + '/dist/devtools-mcp/lighthouse-devtools-mcp-bundle.js');
|
|
58
59
|
|
|
59
60
|
const chromeFlags = [];
|
|
60
61
|
if (testRunnerOptions?.headless) chromeFlags.push('--headless=new');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lighthouse",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.4.1-dev.
|
|
4
|
+
"version": "13.4.1-dev.20260810",
|
|
5
5
|
"description": "Automated auditing, performance metrics, and best practices for the web.",
|
|
6
6
|
"main": "./core/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
"build-extension": "yarn build-extension-chrome && yarn build-extension-firefox",
|
|
23
23
|
"build-extension-chrome": "node ./build/build-extension.js chrome",
|
|
24
24
|
"build-extension-firefox": "node ./build/build-extension.js firefox",
|
|
25
|
-
"build-devtools": "yarn reset-link && node ./build/build-bundle.js clients/devtools/devtools-entry.js dist/lighthouse-dt-bundle.js && node ./build/build-dt-report-resources.js",
|
|
25
|
+
"build-devtools": "yarn reset-link && node ./build/build-bundle.js clients/devtools/devtools-entry.js dist/devtools/lighthouse-dt-bundle.js && node ./build/build-dt-report-resources.js",
|
|
26
26
|
"build-legacy-javascript": "node ./build/build-legacy-javascript.js",
|
|
27
|
-
"build-devtools-mcp": "node ./build/build-bundle-mcp.js clients/devtools-mcp/devtools-mcp-entry.js dist/lighthouse-devtools-mcp-bundle.js",
|
|
27
|
+
"build-devtools-mcp": "node ./build/build-bundle-mcp.js clients/devtools-mcp/devtools-mcp-entry.js dist/devtools-mcp/lighthouse-devtools-mcp-bundle.js",
|
|
28
28
|
"build-smokehouse-bundle": "node ./build/build-smokehouse-bundle.js",
|
|
29
29
|
"build-lr": "yarn reset-link && node --max-old-space-size=4096 ./build/build-lightrider-bundles.js",
|
|
30
30
|
"build-pack": "bash build/build-pack.sh",
|