在 gulp-newer选项文档中,我读到它支持传入配置对象而不是目标。在该配置对象中,您可以指定从旧文件到新文件的映射函数。所以而不是
newer('_build')
你可以写
newer({dest: '_build', map: mappingFn})
映射函数采用文件的相对名称并期望它返回翻译后的名称 - 请参阅index.js文件。您可以定义一个函数,该函数使用先前生成的rev-manifest.json
清单来查找正确的文件名。我在你的构建脚本中放了一些东西(未经测试):
gulp.task('rev-js', function() {
// get the existing manifest
// todo: add logic to skip this if file doesn't exist
var currentManifest = JSON.parse(fs.readFileSync('rev-manifest.json', 'utf8'));
// mapping function for gulp-newer
function mapToRevisions(relativeName) {
return currentManifest[relativeName]
}
return gulp.src('/js/main.js, {base: '.'})
.pipe(newer({dest: '_build', map: mapToRevisions}))
.pipe(rev())
.pipe(gulp.dest('_build'))
.pipe(rev.manifest())
.pipe(gulp.dest('_build/rev/js'));
});