gulp-ejs-minify

1.0.4 • Public • Published

gulp-ejs-minify

NPM

Packagegulp-minify-ejs
Description gulp-ejs-minify is a gulp plugin to minify ejs template or html files or C# .aspx files easily

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

Readme

Keywords

Package Sidebar

Install

npm i gulp-ejs-minify

Weekly Downloads

327

Version

1.0.4

License

MIT

Unpacked Size

8.1 kB

Total Files

4

Last publish

Collaborators

  • scfast