Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/driebit/gulp-css-inline-images
- Owner: driebit
- License: mit
- Created: 2014-11-06T14:58:53.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T13:19:23.000Z (over 6 years ago)
- Last Synced: 2025-01-08T21:58:11.804Z (22 days ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 1
- Watchers: 21
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).