fuechter / gulp-cssurl

A plugin to systematically replace URLs in CSS code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gulp-cssurl NPM version

A plugin to systematically replace URLs in CSS code with cssurl.

Node support: 0.10.x, 0.11.x

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

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

Install

Install gulp-cssurl with npm:

$ npm install gulp-cssurl --save-dev

Contributing

To contribute to gulp-cssurl, clone this repo locally and commit your code.

Please check that everything works before opening a pull-request.

License

gulp-cssurl is licensed under the MIT License

About

A plugin to systematically replace URLs in CSS code

License:MIT License


Languages

Language:JavaScript 100.0%