Pipe transforms errors through transformation pipelines

Summary:
public

Fixes an issue on the transforms pipeline which caused not to pipe errors that occured on the external transformer to JSTransformer.

Reviewed By: yungsters

Differential Revision: D2806498

fb-gh-sync-id: c9347d1957a3a9320b3f177ff9b19bf3802087a0
This commit is contained in:
Martín Bigio
2016-01-18 14:26:47 +00:00
committed by Martin Konicek
parent d6ffc2fd6d
commit 3ef6f9f8a7
+5
View File
@@ -32,6 +32,11 @@ function internalTransforms(sourceCode, filename, options) {
}
function onExternalTransformDone(data, callback, error, externalOutput) {
if (error) {
callback(error);
return;
}
var result;
if (data.options.enableInternalTransforms) {
result = internalTransforms(