从 gulp-rev @ 链接: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
}
知道如何实现吗?