Gulp Copying Files from one Directory to another
问题 I want to Gulp Copy Multiple Files gulp.task('copy', function(){ gulp.src( 'bower_components/bootstrap/dist/js/bootstrap.js', 'bower_components/jquery/dist/jquery.min.js', 'bower_components/jquery.stellar/src/jquery.stellar.js', 'bower_components/jquery-waypoints/waypoints.js', 'bower_components/jquery-easing-original/jquery.easing.1.3.js') .pipe(gulp.dest('public/assets/js')); }); To copy my files from my bower_components directory to my assets directory, but it is only working with the