UNPKG

angular-jk-carousel

Version:
25 lines (19 loc) 462 B
(function() { 'use strict'; var gulp = require('gulp'), del = require('del'), cache = require('gulp-cache'); gulp.task('clean-tmp', function(callback) { del(['.tmp']).then(function() { callback(); }); }); gulp.task('clean', ['clean-tmp'], function(callback) { del(['dist']).then(function() { callback(); }); }); gulp.task('clean-cache', function(callback) { return cache.clearAll(callback); }); })();