2.0.3 • Published 5 years ago

gulp-jsminer v2.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

gulp-jsminer (javascript 压缩)

const jsminer = require('gulp-jsminer');

gulp.task('default', () => {
  gulp
    .src('assets/js/**/*')
    .pipe(jsminer({ toplevel: true }))
    .pipe(gulp.dest('dist'));
});
// 转换ES6+后进行压缩
const babel = require('gulp-babel');
const jsminer = require('gulp-jsminer');

gulp.task('default', () => {
  gulp
    .src('assets/js/**/*')
    .pipe(babel())
    .pipe(jsminer())
    .pipe(gulp.dest('dist'));
});

options

see terser options

Listen

ISC

2.0.3

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago