Guest User

Untitled

a guest
Feb 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. gulp.task('scripts', function() {
  2. return gulp.src('./js/*.js')
  3. .pipe(uglify())
  4. .pipe(concat('all.js'))
  5. .pipe(gulp.dest('./build/js'))
  6. });
Add Comment
Please, Sign In to add comment