2.0.3 • Published 3 years ago

gulp-jsminer v2.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
3 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

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago