From c7b1f82f2a941e0bdf1fce3336aa8a14c9f37e8b Mon Sep 17 00:00:00 2001 From: lucascaro Date: Mon, 10 Oct 2016 20:23:48 -0700 Subject: [PATCH] Break long line in gulpfile into smaller lines --- gulpfile.babel.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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')); });