From 1319fb0d749ffc127049f14b663fc2f9d2ef4640 Mon Sep 17 00:00:00 2001 From: Jeremy Englert Date: Sun, 14 Jan 2018 22:27:34 -0700 Subject: [PATCH] FIX: Add periods to end of comments --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index ca6425c..daf652e 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -154,7 +154,7 @@ gulp.task( 'styles', function() { * 4. Uglifes/Minifies the JS file and generates vendors.min.js */ gulp.task( 'vendorsJS', function() { - return gulp.src( config.jsVendorSRC, {since: gulp.lastRun( 'vendorsJS' ) } ) // Only run on changed files + return gulp.src( config.jsVendorSRC, {since: gulp.lastRun( 'vendorsJS' ) } ) // Only run on changed files. .pipe( babel({ presets: [ @@ -194,7 +194,7 @@ gulp.task( 'vendorsJS', function() { * 4. Uglifes/Minifies the JS file and generates custom.min.js */ gulp.task( 'customJS', function() { - return gulp.src( config.jsCustomSRC, {since: gulp.lastRun( 'customJS' ) } ) // Only run on changed files + return gulp.src( config.jsCustomSRC, {since: gulp.lastRun( 'customJS' ) } ) // Only run on changed files. .pipe( babel({ presets: [