Tutorial by Examples

First, Install gulp and del to project directory locally npm install --save-dev gulp del Then add the clean task to your gulpfile.js var gulp = require('gulp'); var del = require('del'); gulp.task('default', function() { }); // Task to delete target build folder gulp.task('clean', func...

Page 1 of 1