Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. gulp.task('vendor', function () {
  2. return gulp.src([
  3. 'source/libs/**/*.{js,css}',
  4. 'node_modules/jquery/dist/jquery.min.js',
  5. 'node_modules/bootstrap/dist/js/bootstrap.bundle.min.js'
  6. ])
  7. .pipe(gulp.dest('build/vendor'))
  8. .pipe(server.stream());
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement