Guest User

Untitled

a guest
Jan 22nd, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. gulp.task('js', function() {
  2. gulp.src('./styles')
  3. .pipe(concat('scripts.js'))
  4. .pipe(gulp.dest('./dist/js'))
  5. .pipe(browserSync.reload({
  6. stream: true
  7. }));
  8. });
Add Comment
Please, Sign In to add comment