Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
S1SYPHOS committed Dec 3, 2015
1 parent 055685a commit 316788c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/gulp/templates/gulpfile.babel.js
Expand Up @@ -182,7 +182,7 @@ gulp.task('html', () =>
.pipe($.if(argv.prod, gulp.dest('dist')))
.pipe($.if(argv.prod, $.gzip({append: true})))
.pipe($.if(argv.prod, $.size({
title: 'gzipped script',
title: 'gzipped HTML',
gzip: true
})))
.pipe($.if(argv.prod, gulp.dest('dist')))
Expand Down Expand Up @@ -271,7 +271,7 @@ gulp.task('assets', gulp.series(
gulp.parallel('styles', 'scripts', 'fonts', 'images')
));

// 'gulp assets:copy' -- copes the assets into the dist folder, needs to be
// 'gulp assets:copy' -- copies the assets into the dist folder, needs to be
// done this way because Jekyll overwrites the whole folder otherwise
gulp.task('assets:copy', () =>
gulp.src('.tmp/assets/**/*')
Expand Down

0 comments on commit 316788c

Please sign in to comment.