Max Sysoev
Max Sysoev
Mine was created earlier. That's only difference thought :) Also, it takes options from query (may be `this.options` is the same...) I think it's possible to merge both modules into...
I think no. Need you any help from me?
Me to ... Seems like this is some good advice posted here https://github.com/preactjs/preact-compat/issues/497 TLDR: move react and preact to peerDeps, add preact separate entrypoint
@aarongreenwald +1 to You. See also `.eslintrc` from `react-native` team: https://github.com/facebook/react-native/blob/8baaad9b0fbda2b02bb1834452aa63cac7910dc5/.eslintrc#L162 They just turned the rule off Ok, I will just follow them and turn it off too.
It's good it it's now working for me This is example repo on it https://github.com/ColCh/babel-plugin-trace-execution-demo Works after this patch applies (within node modules) ```diff diff --git 1/./index.js 2/./index.js.bak index 0c1776f..bcd5bb6...
@lrettig did you managed to get sourcemap working? RN Packager bundles sourcemap as separate file - and we don't have filesystem access in RN by default. So sourcemap _should be_...
@lrettig thanks. Work with sourcemap - this means this lib should read script file, read separate sourcemap, consume it, and only then you will be able to get mapped stack...
For people searching for a tool to translate error stacks: https://github.com/SoftwareMansion/stack-beautifier example: ``` 2017-02-11 15:13:06.477 foo-project[26049:3497670] *** Terminating app due to uncaught exception 'RCTFatalException: Unhandled JS Exception: TEST', reason: 'Unhandled...
@s2zaman Please take a look on this wrapper https://gist.github.com/ColCh/d1daf4864a931faeb3d5c3d07917ebef Example on `throw new Error(...)`: IOS  android 
@s2zaman and a note how to translate error stacks to readable thing using source map: https://github.com/corymsmith/react-native-fabric/issues/2#issuecomment-279140824