Skip to content

Instantly share code, notes, and snippets.

@DawnPaladin
Created May 19, 2016 21:18
Show Gist options
  • Save DawnPaladin/418b140fe46b36e817a5c2563ade66ca to your computer and use it in GitHub Desktop.
Save DawnPaladin/418b140fe46b36e817a5c2563ade66ca to your computer and use it in GitHub Desktop.
Gulpfile: Copy all files to another folder
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