gulp-awspublish
Advanced tools
Comparing version 6.0.1 to 6.0.2
var colors = require('ansi-colors'), | ||
fancyLog = require('fancy-log'), | ||
through = require('through2'); | ||
{ Transform } = require('stream'); | ||
@@ -16,3 +16,4 @@ /** | ||
var stream = through.obj(function (file, enc, cb) { | ||
const stream = new Transform({ objectMode: true }); | ||
stream._transform = function (file, enc, cb) { | ||
var state; | ||
@@ -41,3 +42,3 @@ if (!file.s3) return cb(null, file); | ||
cb(null, file); | ||
}); | ||
}; | ||
@@ -44,0 +45,0 @@ // force flowing mode |
{ | ||
"name": "gulp-awspublish", | ||
"version": "6.0.1", | ||
"version": "6.0.2", | ||
"description": "gulp plugin to publish files to amazon s3", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
28409
441