()
| 33 | } |
| 34 | |
| 35 | function minify() { |
| 36 | return src(destFile) |
| 37 | .pipe(dest(destFolder)) |
| 38 | .pipe(uglify()) |
| 39 | .pipe(rename({ extname: '.min.js' })) |
| 40 | .pipe(dest(destFolder)); |
| 41 | } |
| 42 | |
| 43 | function minifyES5(){ |
| 44 | return src(destFile) |
nothing calls this directly
no outgoing calls
no test coverage detected