Skip to content

Commit

Permalink
fix: prevent bundling Lighthouse (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamraine authored Oct 21, 2022
1 parent 961965e commit 6a447ee
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion rollup.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = [
format: 'cjs',
},
],
external: [...Object.keys(pkg.peerDependencies), /^lighthouse/],
external: Object.keys(pkg.peerDependencies),
plugins: [typescript({ module: 'NodeNext' })],
},
{
Expand Down
1 change: 0 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,3 @@ export { PuppeteerRunnerExtension } from './PuppeteerRunnerExtension.js';
export { PuppeteerRunnerOwningBrowserExtension } from './PuppeteerRunnerExtension.js';
export { PuppeteerStringifyExtension } from './PuppeteerStringifyExtension.js';
export { LighthouseStringifyExtension } from './lighthouse/LighthouseStringifyExtension.js';
export { LighthouseRunnerExtension } from './lighthouse/LighthouseRunnerExtension.js';

0 comments on commit 6a447ee

Please sign in to comment.