Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.63 KB

asset-revisioning.md

File metadata and controls

40 lines (29 loc) · 1.63 KB

Asset revisioning

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.cssunicorn-098f6bcd.css.

Make sure to set the files to never expire for this to have an effect.

Steps

1. Install dependencies

Install these gulp plugins:

$ npm install --save-dev gulp-rev gulp-rev-replace

2. Update the html task

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