2.1.0 • Published 6 years ago

gulp-css-decache v2.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

gulp-css-decache Build Status

Finds all url() statements in your CSS files and adds cachebusting parameters to them.

Install

$ npm install --save-dev gulp-css-decache

Usage

var gulp = require('gulp');
var decache = require('gulp-css-decache');

gulp.task('decache', function() {
  return gulp.src(['css/*.css'])
    .pipe(decache({ base : './public/', md5: true, ignore: [/regexToMatchURIsToSkip/] }))
    .pipe(gulp.dest('./public'));
});

License

MIT © Max Degterev

2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.0

9 years ago

0.0.8

9 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago