Skip to content

driebit/gulp-css-inline-images

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-css-inline-images

Wrapper for using css-inline-images in Gulp

##Installation Install like any other module.

npm install gulp-css-inline-images

##Usage

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.

About

Wrapper for using css-inline-images in Gulp

Resources

License

Stars

Watchers

Forks

Packages

No packages published