Gulp Tasks (CheatSheet)
JS
R
JavaScriptA 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
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