You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gulp-aws currently claims it only supports streams (index.js, lines 34-38):
// Only streams supported
if (file.isBuffer()) {
this.emit('error', new PluginError(PLUGIN_NAME, new Error('Only streams supported'), { showStack: true }));
return done();
}
However none of the functionality seems to be particular to streams. In fact, after commenting out the above lines, the plugin works fine with buffered streams. I suggest removing the above check.
The text was updated successfully, but these errors were encountered:
gulp-aws currently claims it only supports streams (index.js, lines 34-38):
However none of the functionality seems to be particular to streams. In fact, after commenting out the above lines, the plugin works fine with buffered streams. I suggest removing the above check.
The text was updated successfully, but these errors were encountered: