1.1.0 • Published 9 years ago

gulp-colorguard v1.1.0

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

gulp-colorguard

Keep a watchful eye on your css colors.

NPM Version NPM Downloads Build Status

Issues with the output should be reported on the css-colorguard issue tracker.

Install

Install with npm

$ npm install --save-dev gulp-colorguard

Usage

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

//example with basic css copying
gulp.task('css', function() {
    gulp.src('./src/css/**/*.css')
        .pipe(colorguard())
        .pipe(gulp.dest('./public/css'));
});

//example with less-preprocesser
var less = require('gulp-less');

gulp.task('css', function() {
    gulp.src('./src/less/**/*.less')
        .pipe(less())
        .pipe(colorguard())
        .pipe(gulp.dest('./public/css'));
});

//example with verbose logging
gulp.task('css', function() {
    gulp.src('./src/less/**/*.css')
        .pipe(colorguard({
            logOk: true
        }))
        .pipe(gulp.dest('./public/css'));

        // then if no errors:
        // --> main.css has no css color collisions
});

API

Options are passed through to css-colorguard, except for options.logOk which affects this gulp plugin behavior only.

logOk

Be verbose and log files that have no collisions. Off by default.

Type: Boolean

Default: false

License

MIT @Gilad Peleg

1.1.0

9 years ago

1.0.0

10 years ago

0.5.0

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago