You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 line
197 B

  1. var gulp = require('gulp'),
  2. gzip = require('gulp-gzip');
  3. module.exports = function (cb) {
  4. gulp.src('dist/js/datepicker.min.js')
  5. .pipe(gzip())
  6. .pipe(gulp.dest('dist/'))
  7. };