常用 Gulp 插件
HTML 文件处理
yarn add gulp-htmlmin --devconst { src, dest } = require('gulp');
const minifyHtml = require('gulp-htmlmin');
function minifyHtml() {
const options = {
collapseWhitespace: true, // 是否将 HTML 代码折叠成一行,默认 false
removeComments: true // 是否删除注释,默认 false
};
return src('./*.html')
.pipe(minifyHtml(options))
.pipe(dest('./dist/'));
};CSS 文件处理
JS 文件处理
通用文件处理
Last updated