How to use gulp-cache - 10 common examples

To help you get started, we’ve selected a few gulp-cache examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github freeCodeCamp / arcade-mode / gulpfile.js View on Github external
gulp.task('clear-cache', done => cache.clearAll(done)); // clears img cache
github devbridge / Front-End-Toolkit / gulp-tasks / clear-image-cache.js View on Github external
module.exports = function (done) {
	const cache = require('gulp-cache');
	return cache.clearAll(done);
};
github Heigvd / Wegas / wegas-app / gulpfile.js View on Github external
gulp.task('clear', function (done) {
    "use strict";
    return cache.clearAll(done);
});
github lightingbeetle / generator-lb / app / templates / gulp / tasks / _images.js View on Github external
gulp.task('clearCache', 'Clear Imagemin cache', function (done) {
  return cache.clearAll(done);
});
github ankitjain28may / openchat / gulpfile.js View on Github external
gulp.task("clear", function (done) {
  return cache.clearAll(done);
});
github cycjimmy / h5-webpack-starter / gulp / clean.js View on Github external
exports.cleanIcon = callback => {
  del(srcPaths.icons.to);
  return cache.clearAll(callback);
};
github cody1991 / learn / finish / gulp-relearn / gulpfile.js View on Github external
gulp.task('clean', function(callback) {
    del('dist');
    return cache.clearAll(callback);
});
github nebs / notekitchen / gulpfile.js View on Github external
gulp.task('clean:cache', function (callback) {
    return cache.clearAll(callback)
});
github gmariani / minerva / gulpfile.js View on Github external
gulp.task('cache:clear', function(callback) {
    return cache.clearAll(callback);
});

gulp-cache

A cache proxy plugin for Gulp

MIT
Latest version published 5 years ago

Package Health Score

51 / 100
Full package analysis

Popular gulp-cache functions