0.0.1 • Published 7 years ago

gulp-check-grep v0.0.1

Weekly downloads
50
License
MIT
Repository
github
Last release
7 years ago

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.