mmmulani
mmmulani
hmmm it also seems that if I monkey-patch `node_modules/relay-hooks/package.json` and remove the `module` link, i.e. change the module to be CommonJS only, the issue also goes away. as a workaround,...
easy workaround, add this to your custom webpack config in next.js: (of course, brittle hack etc etc) ``` config.resolve.alias['relay-hooks'] = path.resolve(__dirname, 'node_modules/relay-hooks/lib/index.js'); ```
I'm having trouble getting fishhook to work on iOS 11.1 on a project where it previously worked, so perhaps they enabled dyld 3.0 in 11.1?
seems like you need graphQL version 16: https://github.com/graphql/graphql-js/commit/4f21cdc1f1cbd5873735b8426f8aa8b2f8d5db8c breaking change from graphql-scalars that takes advantage of it: https://github.com/Urigo/graphql-scalars/commit/0fb119aa21ef552ed00a65ea7ab813ff06473cc6 downgrading to [email protected] fixes this
chatted with @sahrens about it a bit, and we both agree that a general-purpose Text measurement API could be useful, especially in the FlatList case. We think the better approach...
@mjmasn this RFC would make it faster to render stuff like that but you can already do it by using onTextLayout. Check out the TextExample in RNTester. @cpojer this is...
Yeah that would be nicer, I'll try hacking it out today. My idea is to only allow "type(*)" rather than also allow "type(prop.*)" since that can be queried by "type(prop)"
Sorry about the huge size, that's from me regenerating the grammar with pegjs. I had to reorder the grammar rules, looks like pegjs eagerly fails as soon as it starts...
@edmund-huber there is definitely value in the knowledge that an event simply occurred (and overhead in sending down/calculating all those properties) having "type" return all data for all events called...
@mbostock how does this diff look? seems to work for me..