gulp-content-cache
v0.1.0
Published
Gulp plugin that caches the result of heavy operations
Downloads
4
Readme
gulp-content-cache
Usage
var GulpContentCache = require("gulp-content-cache")
var cache = new GulpContentCache();
gulp.task("compile", function() {
return gulp.src("**/*.coffee")
.pipe(cache.content(coffee()))
.pipe(concat("web.js"))
.pipe(src.dest("js"));
});