From 58a8194d6911858a6fced80f955aa7c9153b6982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis-R=C3=A9mi=20Bab=C3=A9?= Date: Wed, 25 Jun 2014 14:53:00 +0200 Subject: [PATCH] Fix incremental-rebuilding example --- docs/recipes/incremental-builds-with-concatenate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/incremental-builds-with-concatenate.md b/docs/recipes/incremental-builds-with-concatenate.md index ecccb663d..3e7067308 100644 --- a/docs/recipes/incremental-builds-with-concatenate.md +++ b/docs/recipes/incremental-builds-with-concatenate.md @@ -30,7 +30,7 @@ gulp.task('watch', function () { var watcher = gulp.watch(scriptsGlob, ['scripts']); // watch the same files in our scripts task watcher.on('change', function (event) { if (event.type === 'deleted') { // if a file is deleted, forget about it - delete cache.caches['scripts'][event.path]; // gulp-cached remove api + delete cached.caches.scripts[event.path]; // gulp-cached remove api remember.forget('scripts', event.path); // gulp-remember remove api } });