Skip to content

Commit

Permalink
Fixes lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paullewis authored Jul 14, 2016
1 parent 563ae0c commit bd5f8e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lighthouse-extension/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ gulp.task('browserify', () => {
});

// In the case of our lighthouse-core script, we've got extra work to do
if (file.path.includes('app/src/lighthouse-background.js')){
if (file.path.includes('app/src/lighthouse-background.js')) {
// Do the additional transform to convert references to devtools-timeline-model
// to the modified version internal to Lighthouse.
bundle.transform('./dtm-transform.js', {
Expand All @@ -117,7 +117,7 @@ gulp.task('browserify', () => {
.ignore('chrome-remote-interface');

// Expose the audits and gatherers so they can be dynamically loaded.
const corePath = "../lighthouse-core/";
const corePath = '../lighthouse-core/';
const driverPath = `${corePath}driver/`;
audits.forEach(audit => {
bundle = bundle.require(audit, {expose: audit.replace(corePath, '../')});
Expand Down

0 comments on commit bd5f8e1

Please sign in to comment.