gulp-colorguard
Version:
Keep a watchful eye on your css colors
70 lines (49 loc) • 1.89 kB
Markdown
> Keep a watchful eye on your css colors.
[](https://npmjs.org/package/gulp-colorguard)
[](https://npmjs.org/package/gulp-colorguard)
[](https://travis-ci.org/pgilad/gulp-colorguard)
*Issues with the output should be reported on the css-colorguard [issue tracker](https://github.com/SlexAxton/css-colorguard/issues).*
Install with [npm](https://npmjs.org/package/gulp-colorguard)
```bash
$ npm install --save-dev gulp-colorguard
```
```js
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
});
```
[](https://github.com/SlexAxton/css-colorguard#programmatic) are passed through to css-colorguard,
except for `options.logOk` which affects this gulp plugin behavior only.
Be verbose and log files that have no collisions. Off by default.
**Type**: `Boolean`
**Default**: `false`
MIT @[Gilad Peleg](http://giladpeleg.com)