Skip to content
This repository has been archived by the owner on Apr 7, 2023. It is now read-only.

Commit

Permalink
Don't cachebust JSON files..
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McLeod committed Jul 15, 2015
1 parent 88587c6 commit d2fc526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
Expand Down

0 comments on commit d2fc526

Please sign in to comment.