Skip to content

Instantly share code, notes, and snippets.

@mjhea0
Created February 20, 2014 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjhea0/9108726 to your computer and use it in GitHub Desktop.
Save mjhea0/9108726 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var gutil = require('gulp-util');
gulp.task('default', function() {
gulp.start('copy_files');
});
gulp.task('copy_files', function() {
gulp.src('./public/**')
.pipe(gulp.dest('./build'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment