The compressed js file is output with the same file name.
gulp.task('compressjs', function () { gulp.src('app/**/*.js') .pipe(uglify()) .pipe(gulp.dest('dist')); });
How can I make it output the file with min.js at the back?
gulp gulp-uglify
user1995781 Jan 13 '15 at 6:23 2015-01-13 06:23
source share