我正在使用 grunt-string-replace 将 pkg.version 值(在 grunt.initConfig 中定义)添加到 css 文件名,以避免在版本更改时进行缓存。我还添加了一个函数以从版本字符串中删除点。结果文件名如下所示:style.css?013
我可以在替换函数中使用 initConfig pkg.version 值,而不是从包文件中再次读取它吗?
这是我的字符串替换配置:
"string-replace": {
dist: {
files: {
"dist/test.html": "dist/test.html"
},
options: {
replacements: [{
pattern: '#pkgversion#',
replacement: function(){var p=grunt.file.readJSON('package.json'); return p.version.replace(/\./g ,'');},
}]
}
},
},