Mark Oswald
Mark Oswald
> Solved this problem. https://scriptedalchemy.medium.com/distributed-logging-in-federated-applications-with-sentry-f4249aa66e20 We use a similar approach of binding hubs to error boundaries on the micro-frontend level. Does your approach work with breadcrumbs? We managed to send...
There's crypto-browserify bundled in node-libs-browser, which is bundled in webpack. If you bundle your app with webpack to index.ios.js and use this for your react-native app it works. But without...
Just use https://github.com/cloudinary/pkg-cloudinary-core, that works like a charm!
@GeoffreyPlitt No idea,sry
I'd vote for allowing children, but then we'll have to mock all this native-connecting Apis. At some point you have to make the cut
Maybe we should generate this list via script :-) I wouldn't implement a test, but a script comparing the React Native export with the mocked one would be great. That...
in our mocha config we do `--register` a file that looks like this: ``` require('react-native-mock/mock'); require('babel-core/register')({ ignore: function(packageName) { if (packageName.match(/node_modules/)) { return !(packageName.match(/react-native-vector-icons/) || packageName.match(/react-native-animatable/) ); } return false;...
What about a postinstall scripts which Checks the existence of the build dir and executes _npm run build_ if needed
Yes, you're right. Installing devDeps before would be too much overhead. Will think about it 😀
Is there a need to bundle the queue into this library? We have our own queue around print jobs and `p-queue` causing strange build issues on our end. For simplicity,...