gulp-check-grep

0.0.1 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i gulp-check-grep

Weekly Downloads

0

Version

0.0.1

License

MIT

Last publish

Collaborators

  • sophilabs