0.2.1 • Published 8 years ago

gulp-coloor v0.2.1

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

gulp-coloor

Gulp plugin for Coloor image preloading utility.

Installation

npm i gulp-coloor -D

Usage

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

gulp.task('decorate-html', function() {
  gulp.src('src/*.*') // your html-ish files
    .pipe(coloor({
      sizeW: 3, // 3px width of the image preview. The height is calculated automatically.
      images: [__dirname + '/photos'] // location of the image files
    }))
    .pipe(gulp.dest('./dist/'));
});

gulp.task('default', ['decorate-html']);