Skip to content

Commit

Permalink
FIX: Add periods to end of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Englert committed Jan 15, 2018
1 parent ab8327f commit 1319fb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down Expand Up @@ -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: [
Expand Down

0 comments on commit 1319fb0

Please sign in to comment.