Skip to content

Commit

Permalink
Replace gulp-util
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneog committed Mar 21, 2018
1 parent 9b429a6 commit eb964b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var through2 = require('through2');
var PluginError = require('gulp-util').PluginError;
var PluginError = require('plugin-error');
var bufferMode = require('./lib/buffer');
var streamMode = require('./lib/stream');
var defaults = require('defaults');
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
"dependencies": {
"bytes": "^2.1.0",
"defaults": "^1.0.2",
"gulp-util": "^3.0.4",
"fancy-log": "^1.3.2",
"node-zopfli": "^1.2.1",
"plugin-error": "^1.0.1",
"stream-to-array": "^2.0.2",
"through2": "^2.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var fs = require('fs');
var gulp = require('gulp');
var log = require('gulp-util').log;
var log = require('fancy-log');
var zopfli = require('../');
var nid = require('nid');
var rename = require('gulp-rename');
Expand Down

0 comments on commit eb964b5

Please sign in to comment.