Skip to content

Commit

Permalink
doc: remove gulp-util from the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriopvl committed Dec 30, 2017
1 parent d6f4fea commit 2fdfdff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Using a custom reporter:

```javascript
var jsonlint = require('gulp-jsonlint');
var gutil = require('gulp-util');
var log = require('fancy-log');

var myCustomReporter = function (file) {
gutil.log('File ' + file.path + ' is not valid JSON.');
log('File ' + file.path + ' is not valid JSON.');
};

gulp.src('./src/*.json')
Expand Down

0 comments on commit 2fdfdff

Please sign in to comment.