from gulp-rev @ link : https://github.com/sindresorhus/gulp-rev I have wrote a task to simple
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
}
Any idea how to acheive it ?