From d2fc5260395fd0b479fad3509a482a86f7cae3fe Mon Sep 17 00:00:00 2001 From: Colin McLeod Date: Tue, 14 Jul 2015 21:58:27 -0700 Subject: [PATCH] Don't cachebust JSON files.. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index daa795c5..de145bdd 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -201,7 +201,7 @@ gulp.task('watch', function() { }); gulp.task('cache-bust', function(done) { - var rev_all = new revAll({ prefix: cdnHostStr, dontRenameFile: ['.html','db.json'] }); + var rev_all = new revAll({ prefix: cdnHostStr, dontRenameFile: ['.html','.json'] }); var stream = gulp.src('build/**') .pipe(rev_all.revision()) .pipe(gulp.dest('build'))