Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/driebit/gulp-css-inline-images

Wrapper for using css-inline-images in Gulp
https://github.com/driebit/gulp-css-inline-images

Last synced: 2 days ago
JSON representation

Wrapper for using css-inline-images in Gulp

Awesome Lists containing this project

README

        

gulp-css-inline-images
======================

Wrapper for using css-inline-images in [Gulp](http://gulpjs.com)

##Installation
Install like any other module.
```bash
npm install gulp-css-inline-images
```

##Usage
```javascript
var cssInlineImages = require('gulp-css-inline-images');

gulp.task('inline-images', function () {
gulp.src('*.css')
.pipe(cssInlineImages({
webRoot: 'web',
path: 'images'
}))
.pipe(gulp.dest('build'));
});
```

For detail usage off the css-inline-images module and its options [see the GitHub page](https://github.com/driebit/css-inline-images).