gulp-html-version
v1.1.0
Published
Gulp plugin to append version from package.json
Downloads
12
Maintainers
Readme
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
版本号参数名称,默认为v
paramType
生成版本的参数类型,默认为version
有三个选项。version
: 在package.json
中version
作为版本号;guid
: 生成唯一字符串版本号 ;timestamp
: 生成时间戳版本号suffix
需要在资源文件添加的版本号 默认为['css', 'js']