From 316788cc69a4bcba4c2d5b2898cd66dc5bd5b28f Mon Sep 17 00:00:00 2001 From: S1SYPHOS Date: Thu, 3 Dec 2015 20:17:56 +0100 Subject: [PATCH] Fix typo --- generators/gulp/templates/gulpfile.babel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generators/gulp/templates/gulpfile.babel.js b/generators/gulp/templates/gulpfile.babel.js index c8b9506..a1cd07b 100644 --- a/generators/gulp/templates/gulpfile.babel.js +++ b/generators/gulp/templates/gulpfile.babel.js @@ -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'))) @@ -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/**/*')