2.1.0 • Published 4 years ago

gulp-css-decache v2.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 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

4 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.0

7 years ago

0.0.8

8 years ago

0.0.7

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago