Advertisement
Guest User

Untitled

a guest
May 31st, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. gulp.task('js', function() {
  2. return gulp.src('./src/js/*.js')
  3. .pipe(uglify({
  4. options: {
  5. mangle: false,
  6. beautify: true,
  7. comments: true
  8. }
  9. }))
  10. .pipe(rename('cf247bootstrapTheme.js'))
  11. .pipe(gulp.dest('./dist/js'));
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement