Comparing version 2.10.2 to 2.11.0
@@ -61,4 +61,4 @@ 'use strict'; | ||
transform: write, | ||
flush: flush | ||
flush | ||
}); | ||
}; |
@@ -7,3 +7,3 @@ 'use strict'; | ||
var through = require('through2'); | ||
var Transform = require('stream').Transform; | ||
var PluginError = require('plugin-error'); | ||
@@ -108,4 +108,6 @@ var spawn = require('child_process').spawn; | ||
}; | ||
var stream = through.obj(write); | ||
return stream; | ||
return new Transform({ | ||
objectMode: true, | ||
transform: write | ||
}); | ||
}; |
'use strict'; | ||
var through = require('through2'); | ||
var Transform = require('stream').Transform; | ||
var log = require('fancy-log'); | ||
@@ -27,4 +27,6 @@ var exec = require('child_process').exec; | ||
// Return a stream | ||
return through.obj(checkout); | ||
return new Transform({ | ||
objectMode: true, | ||
transform: checkout | ||
}) | ||
}; |
'use strict'; | ||
var through = require('through2'); | ||
var Transform = require('stream').Transform; | ||
var log = require('fancy-log'); | ||
@@ -119,3 +119,7 @@ var exec = require('child_process').exec; | ||
return through.obj(write, flush); | ||
return new Transform({ | ||
objectMode: true, | ||
transform: write, | ||
flush | ||
}); | ||
}; |
@@ -8,3 +8,3 @@ 'use strict'; | ||
var Vinyl = require('vinyl'); | ||
var through = require('through2'); | ||
var PassThrough = require('stream').PassThrough; | ||
var log = require('fancy-log'); | ||
@@ -80,3 +80,3 @@ var path = require('path'); | ||
var srcStream = through.obj(); | ||
var srcStream = new PassThrough({ objectMode: true }); | ||
var cmd = compare; | ||
@@ -83,0 +83,0 @@ |
'use strict'; | ||
var through = require('through2'); | ||
var Transform = require('stream').Transform; | ||
var log = require('fancy-log'); | ||
@@ -37,3 +37,7 @@ var exec = require('child_process').exec; | ||
return through.obj(write, flush); | ||
return new Transform({ | ||
objectMode: true, | ||
transform: write, | ||
flush | ||
}); | ||
}; |
{ | ||
"name": "gulp-git", | ||
"description": "Git plugin for gulp (gulpjs.com)", | ||
"version": "2.10.2", | ||
"version": "2.11.0", | ||
"homepage": "http://github.com/stevelacy/gulp-git", | ||
@@ -19,3 +19,2 @@ "repository": { | ||
"strip-bom-stream": "^3.0.0", | ||
"through2": "^2.0.3", | ||
"vinyl": "^2.0.1" | ||
@@ -22,0 +21,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
53596
7
988
- Removedthrough2@^2.0.3
- Removedthrough2@2.0.5(transitive)
- Removedxtend@4.0.2(transitive)