Skip to content

Static asset revisioning by appending content hash to filenames: unicorn.css → unicorn-098f6bcd.css

Notifications You must be signed in to change notification settings

shonny-ua/gulp-rev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-rev Build Status

Static asset revisioning by appending content hash to filenames
unicorn.css => unicorn-098f6bcd.css

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

Install

Install with npm

npm install --save-dev gulp-rev

Example

var gulp = require('gulp');
var rev = require('gulp-rev');

gulp.task('default', function () {
	gulp.src('src/*.css')
		.pipe(rev())
		.pipe(gulp.dest('dist'));
});

Options are intentionally missing as the default should work in most cases.

Original path

Original file paths are stored at file.revOrigPath. This could come in handy for things like rewriting references to the assets.

Asset manifest

var gulp = require('gulp');
var rev = require('gulp-rev');

gulp.task('default', function () {
	gulp.src('src/*.css')
		.pipe(rev())
		.pipe(gulp.dest('dist'))  // write revisioned assets to /dist
		.pipe(rev.manifest())     // generate a revision manifest file
		.pipe(gulp.dest('dist')); // write it to /dist/rev-manifest.json
});

An asset manifest, mapping the original paths to the revisioned paths, will be written to dist/rev-manifest.json:

{
  "unicorn.css": "unicorn-098f6bcd.css"
}

License

MIT © Sindre Sorhus

About

Static asset revisioning by appending content hash to filenames: unicorn.css → unicorn-098f6bcd.css

Resources

Stars

Watchers

Forks

Packages

No packages published