来自gulp-rev @ link:https://github.com/sindresorhus/gulp-rev 我写了一个简单的任务
gulp.task('build-app', function () {
return gulp
.src([gulpConfig.clientApp + '*.js'])
.pipe($.rev())
// i want to get the updated hash, which I will use to replace the string in some place
}
知道如何实现它吗?
答案 0 :(得分:0)
您可以使用gulp-filenames存储新的/哈希文件名。我没有用gulp-rev做过这个,但我有gulp-freeze
gulp.task('css', function () {
return gulp.src('./js/**/*.js')
.pipe(freeze())
.pipe(filenames('some-string'))
.pipe(gulp.dest('./dist'));
});
然后在另一个任务中,您可以使用以下内容获取散列文件名:
filenames.get('some-string');