From 61b8de320cbe973a09258ad181c079fd7a60d0f6 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Mon, 1 Aug 2016 16:16:48 -0700 Subject: [PATCH] extension: exclude source-map module from browserified bundles. --- lighthouse-extension/gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lighthouse-extension/gulpfile.js b/lighthouse-extension/gulpfile.js index 9ece5efed3d8..daa26a2a22be 100644 --- a/lighthouse-extension/gulpfile.js +++ b/lighthouse-extension/gulpfile.js @@ -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/';