Skip to content

Commit

Permalink
extension: exclude source-map module from browserified bundles.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Aug 1, 2016
1 parent 606e74b commit 61b8de3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lighthouse-extension/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ gulp.task('browserify', () => {
bundle.transform('./dtm-transform.js', {
global: true
})
.ignore('chrome-remote-interface');
.ignore('chrome-remote-interface')
.ignore('source-map');

// Expose the audits and gatherers so they can be dynamically loaded.
const corePath = '../lighthouse-core/';
Expand Down

0 comments on commit 61b8de3

Please sign in to comment.