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
Minimal change in this upgrade but since the monitor$ notification event now signals with the error object rather than the error.message, I thought it was best to bump the major version so it wouldn't surprise anyone.
monitor$ event example error
{action: {type: 'BAD'},err: Error('something bad happened'),// this is now an error object if one was thrown rather than a stringop: 'nextError'},
Unless you are using monitor$ and specifically looking for a string, you can safely upgrade to this version. Even if you were using the result as a string error should automatically coerce into a string as well.
Thanks to PR #140 by @TheTekton which adds "react-native" field to package.json to cause it to use the untranspiled source. Transpiled source was causing an error during react native build.