๐ซถ any time
15.06.2025 12:00 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0@cedric.dev.bsky.social
Doing stuff with ๐ @expo - Preparing for Launch - Creator of need.review - Don't let your memes be dreams - Something of an ๐ investor myself
๐ซถ any time
15.06.2025 12:00 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0@joshuakgoldberg.com sorry for the no-reply on the repo. Is there anything you need changed in the repo?
19.05.2025 22:09 โ ๐ 4 ๐ 0 ๐ฌ 1 ๐ 0I think I still have access to it, maybe you do too? Happy to do some maintenance if thatโs required. But, for bigger things, it prob need to wait for after some conferences ๐
19.05.2025 22:08 โ ๐ 3 ๐ 0 ๐ฌ 2 ๐ 0Right now, I donโt have a lot of bandwidth. But what needs to be done on this repository?
19.05.2025 20:09 โ ๐ 3 ๐ 0 ๐ฌ 1 ๐ 0This is what Google does all the time. Even in their Flutter conferences they promote apps from big companies by just saying their name, not that only 1 division of that big corp in 1 single country uses Flutter. All while most other countries of the same corp use something else.
14.01.2025 16:26 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Oh man, so much to come still! We can work on so many other parts of the universal story now.
14.01.2025 15:34 โ ๐ 13 ๐ 0 ๐ฌ 0 ๐ 0๐
11.01.2025 22:21 โ ๐ 3 ๐ 0 ๐ฌ 0 ๐ 0I added the `EAI_AGAIN` error to the offline detection (when fetch is failing). github.com/expo/expo/pu...
08.01.2025 11:17 โ ๐ 7 ๐ 0 ๐ฌ 0 ๐ 0For normal offline errors, we automatically switch to offline mode with a warning that it did. See: github.com/expo/expo/bl...
08.01.2025 10:39 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0As the `โoffline` flag mentions, we ping the API to get a list of known dependencies that we use to check if you might be running incompatible `expo-*` packages for SDK 50.
We also catch known offline related issues, unfortunately the EAI_AGAIN is a DNS error but doesnโt indicate you are offline.
Syntax trees shouldnโt have to be compiled or evaluated. Itโs usually a token based lexer that only represents the written code through an accessible interface. Hence itโs the only way to mutate code in a stable manner.
03.01.2025 09:52 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Preferably all mods that are required for a platform have a proper way to do a mod using some sort of AST/CST. Thatโs the only way to make things stable
02.01.2025 09:57 โ ๐ 3 ๐ 0 ๐ฌ 1 ๐ 0The noop disables dangerous mods for the platform. Otherwise it would error out. Dangerous mods were a โif itโs not implemented, there is still _a_ way to do somethingโ but itโs not recommended and it could be unstable.
Thatโs why I just disabled it.
Fun fact, both React Native Test App (RNTA) - github.com/microsoft/re... - and react-native-tvos (github.com/react-native...) are using config plugins! Any other out-of-tree platform can adopt it as well.
10.12.2024 19:08 โ ๐ 2 ๐ 0 ๐ฌ 1 ๐ 0You know it's a banger when my first words are "sorry, not sorry".
Listen in to an in-depth conversation about React Native debugging from both Alex hunt and me! We have come a long way but have much more to come.
Its better to go for a plugin approach. Even though we don't have a plugin system for Metro configs. Using specialized functions to modify configs lowers the risk a little bit, and adds code-as-documentation to users configs. E.g
module.export = withNativeWind(config, { .. });
Easy to pull out too
I disagree with the "merging configs", I don't think thats a good idea in any way. Merging configs can override so many things without users realizing. That's why we discourage using `import { mergeConfig } from 'metro-config'`.
05.12.2024 11:22 โ ๐ 3 ๐ 0 ๐ฌ 1 ๐ 1Itโs the same for Metro config. You often accidentally overwrite some configuration that breaks something in unexpected ways
05.12.2024 10:35 โ ๐ 2 ๐ 0 ๐ฌ 1 ๐ 0Ok
04.12.2024 17:31 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0๐
17.11.2024 16:38 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0Itโs not about the size, itโs what you can do with 5.5โ screenshots
06.11.2024 09:22 โ ๐ 8 ๐ 0 ๐ฌ 1 ๐ 0Yeah, I just used the default template and added Tldraw. If you are on SDK 52, DOM components work out of the box.
github.com/byCedric/tld...
This is slick!
02.11.2024 18:05 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0Canโt wait until we lower the dependency count even more โค๏ธ
02.11.2024 15:01 โ ๐ 6 ๐ 0 ๐ฌ 0 ๐ 0Having access to the full ecosystem of React (and -Native) libraries truly unlocks possibilities. Even when โjustโ using a web view.
02.11.2024 14:40 โ ๐ 6 ๐ 0 ๐ฌ 0 ๐ 0Iโm still amazed how powerful DOM components are. I mean, try implementing an infinite drawing canvas on web, iOS, and Android in under 5 minutes.
With DOM components you actually can.