This recipe demonstrates how to set up simple static asset revisioning (aka revving) for CSS and JS by appending content hash to their filenames unicorn.css
→ unicorn-098f6bcd.css
.
Make sure to set the files to never expire for this to have an effect.
Install these gulp plugins:
$ npm install --save-dev gulp-rev gulp-rev-replace
- gulp-rev appends content hashes
- gulp-rev-replace updates references to those files
Instead of wasting performance reading CSS and JS files into a new stream, we can notice that we already have that stream available in the html
task, so we can just perform revving there:
gulp.task('html', ['styles'], () => {
return gulp.src('app/*.html')
.pipe($.useref({searchPath: ['.tmp', 'app', '.']}))
.pipe($.if('*.js', $.uglify()))
.pipe($.if('*.css', $.cssnano({safe: true, autoprefixer: false})))
+ .pipe($.if('*.js', $.rev()))
+ .pipe($.if('*.css', $.rev()))
+ .pipe($.revReplace())
.pipe($.if('*.html', $.htmlmin({collapseWhitespace: true})))
.pipe(gulp.dest('dist'));
});
.pipe($.if('*.js', $.rev()))
– at this point we have JS files in the stream, so we are revving them.pipe($.if('*.css', $.rev()))
– at this point we have CSS files in the stream, so we are revving them.pipe($.revReplace())
– at this point we have CSS, JS and HTML files in the stream, so we are updating all references to revved files