Created
February 27, 2015 11:44
-
-
Save schleim/7a96b4965dff5e6f0a60 to your computer and use it in GitHub Desktop.
Gulp: Move folders and contents to a different location
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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