Radek Pietruszewski
Radek Pietruszewski
Every time Greenkeeper updates `flow-bin` dependency, the build will break, because `.flowconfig` needs to be updated too to the same version for CI to pass. I'm sure there's many other...
Lodash is a big dependency, used here in three very trivial places, and Metro bundler isn't very good at tree shaking. I replaced uses of it with simple vanilla JS....
RCTRootView always sets white as the backgroundcolor, which is a problem if we want to make a keyboard that looks and feels like the native iOS keyboard, like so: ![simulator...
I added two new sections: ### JavaScript prototype pollution This is an attack where properties are added onto Object prototype, making them part of ALL objects, e.g.: ``` object.__proto__.isAdmin =...
I decided to split the gigantic babel/index.js file into a bunch of smaller ones. There was a reason why a mono-file was used (astexplorer.net compatibility), but it was just too...
TODOs for me: - [ ] Add proposal for ZACS stage 2 - [ ] Document troubleshooting TODOs for the community: - [ ] Set up CI and code coverage...
There's tests of helper functions, but no tests of the withObservables HOC as a whole. I haven't figured out yet how to test asynchronous React components. If anyone would be...
1. Say I have a hotkey set up with Cmd+Ctrl+T 2. I focus into the shortcut view 3. I change my mind, and just want to assign the same thing,...