UNPKG

388 BJavaScriptView Raw
1const gulp = require('gulp');
2const uglify = require('gulp-uglify-es')["default"];
3
4gulp.task('build', function () {
5 gulp.src('src/**/**.js')
6 .pipe(uglify({
7 parse: {
8 bare_returns: true
9
10 },
11 mangle: {
12 toplevel: true
13 },
14 compress: {
15 drop_console: true,
16 drop_debugger: true
17 }
18 }))
19 .pipe(gulp.dest('dist/'));
20});