From e21f4d3a5bd847798a4afaa91ce7e6699c6f2f7a Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 10 Aug 2017 22:37:35 +0900 Subject: #675 --- gulpfile.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'gulpfile.ts') diff --git a/gulpfile.ts b/gulpfile.ts index 55452fe7f0..87c3a23a01 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -18,6 +18,7 @@ import imagemin = require('gulp-imagemin'); import * as rename from 'gulp-rename'; import * as mocha from 'gulp-mocha'; import * as replace from 'gulp-replace'; +import * as htmlmin from 'gulp-htmlmin'; const uglifyes = require('uglify-es'); import version from './src/version'; @@ -161,5 +162,31 @@ gulp.task('build:client:pug', [ themeColor: constants.themeColor } })) + .pipe(htmlmin({ + // 真理値属性の簡略化 e.g. + // to + // + collapseBooleanAttributes: true, + + // テキストの一部かもしれない空白も削除する e.g. + //

foo

to + //

foo

+ collapseWhitespace: true, + + // (できる場合は)属性のクォーテーション削除する e.g. + //

foo

to + //

foo

+ removeAttributeQuotes: true, + + // 省略可能なタグを省略する e.g. + //

yo

ro + //

yo

+ removeOptionalTags: true, + + // 属性の値がデフォルトと同じなら省略する e.g. + // to + // + removeRedundantAttributes: true + })) .pipe(gulp.dest('./built/web/app/')) ); -- cgit v1.2.3-freya