Skip to content
This repository has been archived by the owner on Dec 30, 2019. It is now read-only.

Commit

Permalink
replace deprecated gulp-util
Browse files Browse the repository at this point in the history
  • Loading branch information
nmarley committed Nov 6, 2018
1 parent 1437e43 commit 025d6ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
var gulp = require('gulp');

var coveralls = require('gulp-coveralls');
var gutil = require('gulp-util');
var fancyLog = require('fancy-log');
var jshint = require('gulp-jshint');
var mocha = require('gulp-mocha');
var rename = require('gulp-rename');
Expand Down Expand Up @@ -146,7 +146,7 @@ function startGulp(name, opts) {
}))
.pipe(rename(fullname + '.min.js'))
.pipe(gulp.dest('.'))
.on('error', gutil.log);
.on('error', fancyLog);
});

gulp.task('browser:maketests', shell.task([
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"brfs": "^1.4.3",
"browserify": "^13.1.1",
"chai": "^3.5.0",
"fancy-log": "^1.3.2",
"gulp": "^3.9.1",
"gulp-bump": "^2.7.0",
"gulp-coveralls": "^0.1.4",
Expand All @@ -53,7 +54,6 @@
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.3",
"gulp-uglify": "^2.1.0",
"gulp-util": "^3.0.8",
"istanbul": "^0.4.5",
"karma": "^1.7.1",
"karma-detect-browsers": "^2.2.4",
Expand Down

0 comments on commit 025d6ce

Please sign in to comment.