Guest User

Untitled

a guest
Nov 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //= jquery.js
  2. //= bootstrap.js
  3. //= ../../node_modules/bootstrap-select/dist/js/bootstrap-select.js
  4.  
  5. gulp.task('js:build', function () {
  6. gulp.src('src/js/main.js')
  7. .pipe(rigger())
  8. .pipe(gulp.dest('pages/js/'))
  9. .pipe(reload({stream: true}));
  10. });
  11.  
  12. gulp.task('js:build', function(){
  13. gulp.src('./js/**/*')
  14. .pipe(concat('script.js'))
  15. .pipe(gulp.dest('./public/'))
  16. });
Add Comment
Please, Sign In to add comment