gulp-anti-cache
v1.0.0
Published
Gulp插件,给HTML中的静态资源url加随机参数以突破缓存。
Readme
gulp-anti-cache
Using query strings to negate the effect of chche.
Installation
$ npm install gulp-anti-cache --save-devUsage
var gulp = require('gulp');
var nocache = require('gulp-anti-cache');default usage:
gulp.task('nocache', function() {
gulp.src('src/*.html')
.pipe(nocache())
.pipe(gulp.dest('dest/'));
});with params usage:
gulp.task('nocache', function() {
gulp.src('src/*.html')
.pipe(nocache({
stampKeyName: 'customkey'
}))
.pipe(gulp.dest('dest/'));
});