angular-jk-carousel
Version:
Amazing carousel for angular material
25 lines (19 loc) • 462 B
JavaScript
(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);
});
})();