Janic Duplessis
Janic Duplessis
# Why Currently it is only possible to pass colors as hex string, instead we can use RN processColor function to support all css colors like other components / native...
I'm trying to improve the apollo graphql client to use a functor module to create a query fetching component and the last piece missing is the type of the variables...
Not sure if this is a limitation of typescript but it seems like it cannot infer fragment types from a query response. ```ts const data = useLazyLoadQuery(graphql` query SubmitTagsScreenQuery {...
Closes #93 Add support for https://github.com/facebook/relay/blob/f8585ab4f90f2e707d5555c9f7b423de3ea553bd/packages/relay-compiler/language/RelayLanguagePluginInterface.js#L176. My main questions is whether this is a breaking change or not and if it should be enabled by default. Also should we make...
It would be nice to be able to use `devOnlyAssignments` (https://github.com/facebook/relay/blob/f8585ab4f90f2e707d5555c9f7b423de3ea553bd/packages/relay-compiler/language/RelayLanguagePluginInterface.js#L176) to provide the text in dev when using persisted queries. With my current setup it would make working non-local...
React native recently completely removed ViewPropTypes. It has been deprecated for a while. This removes prop types from the component. See https://github.com/facebook/react-native/commit/10199b158138b8645550b5579df87e654213fe42
## Description Currently when invoking a function asynchronously and throwing an error to report failure it causes the whole serverless offline server to crash. ## Motivation and Context I think...
## What did you implement: Improve build performance by parallelizing webpack compilation using worker threads. Builds on top of #858, (check only commit 2a776b81a986dba89f08634c911abe03d703711e). Note there still might be some...
## Summary The recommended way to type context in class components when using typescript is to use the declare field syntax (`declare context: React.ContextType`). This syntax triggers an error in...
## Summary I noticed that when using esmodule named import of platform dead code elimination of Platform.OS did not work. #### Does not work Source: ```js import { Platform }...