Skip to content

Commit 61b8de3

Browse files
committed
extension: exclude source-map module from browserified bundles.
1 parent 606e74b commit 61b8de3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lighthouse-extension/gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ gulp.task('browserify', () => {
114114
bundle.transform('./dtm-transform.js', {
115115
global: true
116116
})
117-
.ignore('chrome-remote-interface');
117+
.ignore('chrome-remote-interface')
118+
.ignore('source-map');
118119

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

0 commit comments

Comments
 (0)