1.1.0 • Published 5 years ago
gulp-html-version v1.1.0
gulp-html-version
gulp 插件,避免版本差异缓存,自动添加 css、js 版本号
安装
npm install gulp-html-version --save-dev使用
gulpfile.js:
var gulp = require('gulp');
gulpHtmlVersion = require('gulp-html-version');
gulp.task('default', function() {
return gulp.src('./*.html')
.pipe(gulpHtmlVersion())
.pipe(gulp.dest('./build/'));
});html:
<link rel="stylesheet" href="./example.css">
<script src="./example.js"></script>
<script src="./example1.js?code=utf-8"></script>结果:
<link rel="stylesheet" href="./example.css?v=0.3.2">
<script src="./example.js?v=0.3.2"></script>
<script src="./example1.js?code=utf-8&v=0.3.2"></script>参数
.pipe(gulpHtmlVersion({
paramName: 'version',
paramType: 'timestamp',
suffix: ['css', 'js', 'jpg']
}))参数列表
paramName版本号参数名称,默认为vparamType生成版本的参数类型,默认为version有三个选项。version: 在package.json中version作为版本号;guid: 生成唯一字符串版本号 ;timestamp: 生成时间戳版本号suffix需要在资源文件添加的版本号 默认为['css', 'js']