mirror of https://github.com/status-im/metro.git
packager: JSONReporter: expose errors correctly
Reviewed By: cpojer Differential Revision: D4536721 fbshipit-source-id: d8969a42e844da809bd167cbc1bae2cb11f1db57
This commit is contained in:
parent
7b301aa3a4
commit
96a7d25bdf
|
@ -13,7 +13,7 @@
|
|||
|
||||
import {Writable} from 'stream';
|
||||
|
||||
class JsonReporter<TEvent> {
|
||||
class JsonReporter<TEvent: {}> {
|
||||
|
||||
_stream: Writable;
|
||||
|
||||
|
@ -21,7 +21,20 @@ class JsonReporter<TEvent> {
|
|||
this._stream = stream;
|
||||
}
|
||||
|
||||
/**
|
||||
* There is a special case for errors because they have non-enumerable fields.
|
||||
* (Perhaps we should switch in favor of plain object?)
|
||||
*/
|
||||
update(event: TEvent) {
|
||||
/* $FlowFixMe: fine to call on `undefined`. */
|
||||
if (Object.prototype.toString.call(event.error) === '[object Error]') {
|
||||
event = {...event};
|
||||
event.error = {
|
||||
...event.error,
|
||||
message: event.error.message,
|
||||
stack: event.error.stack,
|
||||
};
|
||||
}
|
||||
this._stream.write(JSON.stringify(event) + '\n');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue