Skip to content

Instantly share code, notes, and snippets.

@colindecarlo
Created May 8, 2014 03:12
Show Gist options
  • Select an option

  • Save colindecarlo/e00fe906ee8a5bf163e3 to your computer and use it in GitHub Desktop.

Select an option

Save colindecarlo/e00fe906ee8a5bf163e3 to your computer and use it in GitHub Desktop.
var move = function (source, dest) {
var log = (function(dest) {
return function(source) {
return 'Moving ' + source + ' to ' + dest;
};
})(dest);
gulp.src(source)
.pipe(newer(dest))
.pipe(print(log))
.pipe(gulp.dest(dest));
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment