Skip to content

Instantly share code, notes, and snippets.

@webmozart
Created September 23, 2015 15:49
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 webmozart/c4fa14e937c9cc6e6789 to your computer and use it in GitHub Desktop.
Save webmozart/c4fa14e937c9cc6e6789 to your computer and use it in GitHub Desktop.
{
'publish': function (gulp) {
gulp.src('res/public')
.pipe(gulp.dest('web'));
gulp.src('vendor/batman/blog/res/public')
.pipe(gulp.dest('web/blog'));
},
'watch': function (gulp, tasks) {
gulp.watch('res/public', tasks);
gulp.watch('vendor/batman/blog/res/public', tasks);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment