Skip to content

Instantly share code, notes, and snippets.

View reimertz's full-sized avatar
🌈
πŸ˜πŸ˜‚πŸ˜ƒπŸ˜€πŸ™‚πŸ€”πŸ˜πŸ™πŸ˜ŸπŸ₯ΊπŸ˜£πŸ˜–πŸ˜­

PiΓ©rre Reimertz reimertz

🌈
πŸ˜πŸ˜‚πŸ˜ƒπŸ˜€πŸ™‚πŸ€”πŸ˜πŸ™πŸ˜ŸπŸ₯ΊπŸ˜£πŸ˜–πŸ˜­
View GitHub Profile
@reimertz
reimertz / gist:85589e69781f9d6d5a4a
Last active March 24, 2016 16:20
gulp + metalsmith
gulp.task('pre-build', ['metalsmith']);
gulp.task('post-build', ['bower-files', 'image-files']);
gulp.task('build', function(callback) {
runSequence('pre-build', 'post-build', callback);
});