Created
May 19, 2016 21:18
-
-
Save DawnPaladin/418b140fe46b36e817a5c2563ade66ca to your computer and use it in GitHub Desktop.
Gulpfile: Copy all files to another folder
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
var gulp = require('gulp'); | |
gulp.task('default', function() { | |
gulp.src("**/*.*").pipe(gulp.dest("C:\\your\\target\\directory\\here\\")); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment