1.0.4 • Published 4 years ago

gulp-ejs-minify v1.0.4

Weekly downloads
58
License
MIT
Repository
github
Last release
4 years ago

gulp-ejs-minify

NPM

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

Use npm.

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