diff --git a/gulpfile.babel.js b/gulpfile.babel.js index e6bf92fbd..c887c98e2 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -214,7 +214,10 @@ gulp.task('pagespeed', cb => // Copy over the scripts that are used in importScripts as part of the generate-service-worker task. gulp.task('copy-sw-scripts', () => { - return gulp.src(['node_modules/sw-toolbox/sw-toolbox.js', 'app/scripts/sw/runtime-caching.js']) + return gulp.src([ + 'node_modules/sw-toolbox/sw-toolbox.js', + 'app/scripts/sw/runtime-caching.js' + ]) .pipe(gulp.dest('dist/scripts/sw')); });