Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add Lighthouse runner extension #281

Merged
merged 17 commits into from
Sep 14, 2022
2 changes: 1 addition & 1 deletion __snapshots__/lighthouse-e2e.test.ts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
exports[
'Lighthouse stringify Puppeteer script generates a valid desktop flow report 1'
'Lighthouse user flow run via stringify produces a valid desktop flow report 1'
] = `
const fs = require('fs');
const puppeteer = require('puppeteer'); // v13.0.0 or later
Expand Down
141 changes: 72 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-tsdoc": "0.2.16",
"lighthouse": "9.5.0-dev.20220818",
"lighthouse": "9.5.0-dev.20220913",
"mime": "3.0.0",
"mocha": "10.0.0",
"prettier": "2.6.2",
Expand Down
1 change: 1 addition & 0 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default [
format: 'cjs',
},
],
external: [/^lighthouse/],
plugins: [typescript()],
},
{
Expand Down
Loading