Using query strings to negate the effect of chche.
$ npm install gulp-anti-cache --save-dev
var gulp = require('gulp');
var nocache = require('gulp-anti-cache');
gulp.task('nocache', function() {
gulp.src('src/*.html')
.pipe(nocache())
.pipe(gulp.dest('dest/'));
});
gulp.task('nocache', function() {
gulp.src('src/*.html')
.pipe(nocache({
stampKeyName: 'customkey'
}))
.pipe(gulp.dest('dest/'));
});