gulp-timestamp-css-url

1.0.0 • Public • Published

gulp-timestamp-css-url

a plugin for gulp.js to add timestamps to images and fonts in CSS files

Installation

npm install gulp-timestamp-css-url

Usage

var cssTimeStamp = require('gulp-timestamp-css-url');
 
gulp.task('stylesheets', function() {
    gulp.src('css/*.css')
        pipe(cssTimeStamp({useDate:true}))
});

Options

assetsDir: specify the public directory for correct MD5 calculation in some specific cases

var cssTimeStamp = require('gulp-timestamp-css-url');
 
gulp.task('stylesheets', function() {
    gulp.src('css/*.css')
        .pipe(cssTimeStamp({
            assetsDir: __dirname + '/public'
        }))
});

Example

before: style.css

.class{background:url(myfile.jpg);}    

after: style.css

.class{background:url(myfile.jpg?v=2017080993403);}
 

Credit

Forked from https://github.com/hellopao/gulp_plugin/tree/master/gulp-make-css-url-version

Package Sidebar

Install

npm i gulp-timestamp-css-url

Weekly Downloads

33

Version

1.0.0

License

MIT

Last publish

Collaborators

  • timgomm