Gulp Tasks (CheatSheet)

JS
R
JavaScript

A set of useful Gulp Tasks (will be updated)

1// Simple Copy Task
2gulp.task('copy', function () {
3    gulp.src('./src/templates/index.html')
4        .pipe(gulp.dest('./public/'));
5});

Created on 10/12/2017