Guest User

Untitled

a guest
Sep 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. gulp.task( 'vendor-js', function() {
  2. return gulp.src( [ 'dev/js/vendor/*.js' ] )
  3. .pipe( sourcemaps.init() )
  4. .pipe( concat( 'application-vendor.js' ) )
  5. .pipe( uglify() )
  6. .pipe( sourcemaps.write() )
  7. .on( 'error', handleError )
  8. .pipe( gulp.dest( proj_dir + '/assets/js' ) )
  9. ;
  10. } );
Add Comment
Please, Sign In to add comment