Version 0.1.6
I have in client/index.html:
<script src="lib/js/vendor.min.js?rev="></script>
In Gulp:
gulp.task('rev', function() {
gulp.src('client/index.html')
.pipe(rev())
.pipe(gulp.dest('./dist'));
});
In my html and after running gulp, output file is same.
Version 0.1.6
I have in client/index.html:
<script src="lib/js/vendor.min.js?rev="></script>In Gulp:
gulp.task('rev', function() {
gulp.src('client/index.html')
.pipe(rev())
.pipe(gulp.dest('./dist'));
});
In my html and after running gulp, output file is same.