Skip to content

Latest commit

 

History

History
65 lines (52 loc) · 2.59 KB

README.md

File metadata and controls

65 lines (52 loc) · 2.59 KB

Gulp Check Grep

travis coverage npm downloads js-semistandard-style license dependencies dev-dependencies

Gulp plugin to detect a pattern through files and fail when found.

Installation

npm install gulp-check-grep

Usage

var gulp = require('gulp');
var gilp = require('gilp')(gulp);
var gulpCheckGrep = require('gulp-check-grep');

gulp.task('check', function () {
  return gulp.src('**/*')
    .pipe(gulpCheckGrep(/console\.log/g, {message: 'console.log not allowed'}))
    .pipe(gulpCheckGrep(/print\(/g, {message: 'print call found'}))
    .pipe(gulpCheckGrep.failOnError());
});

License

Gulp Check Grep is Copyright (c) 2016 sophilabs, inc. It is free software, and may be redistributed under the terms specified in the license file.

About

sophilabs

Gulp Check Grep is maintained and funded by sophilabs, inc. The names and logos for sophilabs are trademarks of sophilabs, inc.