From 2796bbd98f6ba6a5a902a70c19558f11ede34717 Mon Sep 17 00:00:00 2001 From: Patrick Hulce Date: Tue, 20 Feb 2018 13:16:31 -0800 Subject: [PATCH] extension: fix issue where gatheres cannot be found (#4592) --- lighthouse-extension/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-extension/gulpfile.js b/lighthouse-extension/gulpfile.js index d4657c32d90f..790706624213 100644 --- a/lighthouse-extension/gulpfile.js +++ b/lighthouse-extension/gulpfile.js @@ -136,7 +136,7 @@ gulp.task('browserify-lighthouse', () => { bundle = bundle.require(audit, {expose: audit.replace(corePath, '../')}); }); gatherers.forEach(gatherer => { - bundle = bundle.require(gatherer, {expose: gatherer.replace(driverPath, './')}); + bundle = bundle.require(gatherer, {expose: gatherer.replace(driverPath, '../gather/')}); }); computedArtifacts.forEach(artifact => { bundle = bundle.require(artifact, {expose: artifact.replace(corePath, './')});