Skip to content

Instantly share code, notes, and snippets.

@schleim
Created February 27, 2015 11:44
Show Gist options
  • Save schleim/7a96b4965dff5e6f0a60 to your computer and use it in GitHub Desktop.
Save schleim/7a96b4965dff5e6f0a60 to your computer and use it in GitHub Desktop.
Gulp: Move folders and contents to a different location
gulp.task('move', function(){
return gulp.src(['modules/core/client/css/**/*.*'])
.pipe(gulp.dest('public/dist'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment