gulp-ejs-minify
v1.0.4
Published
gulp-ejs-minify is a gulp plugin to minify ejs template file files easily
Downloads
965
Readme
gulp-ejs-minify
1.0.3 Update
semi-colons are now required at the end of lines
1.0.2 Update
Now you can save space chars of the html tag inner text which you wish
such as below:
<div> a b c www </div>
===>
<div>a b c www</div>
Installation
npm install gulp-ejs-minify --save-dev
Usage
var gulp = require('gulp'),
//rename = require("gulp-rename"),
minifyejs = require('gulp-ejs-minify')
gulp.task('minify-html', function() {
return gulp.src(['src/views/*.ejs','src/views/*.html'])
.pipe(minifyejs())
//.pipe(rename({suffix:".min"}))
.pipe(gulp.dest('dist'))
})
谢谢侬 o(^▽^)o
LICENSE
MIT © Noeek Wang MIT © Noeek Wang