-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
__reanimatedLoggerConfig #6839
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hey! 👋 The issue doesn't seem to contain a minimal reproduction. Could you provide a snack or a link to a GitHub repository under your username that reproduces the problem? |
After upgrading to expo 52 I also received this error and took me a long time to figure out what caused it, because I could not reproduce it in an empty fresh project. I had some configuration in Can you check if you have one of the options activated?
|
I was facing this exact same issue after updating my reanimated package from wrapping my metro config with reanimated metro config resolved the issue for me
|
## Summary Turns out that `sideEffects` field was ignored and `isWeb()` check evaluated to static false, removing `initializers.ts` from the bundle. Fixes - #6740 - #6839 ## Test plan Tested it on RNGH web example app using Expo52 Co-authored-by: Michał Bert <[email protected]>
Turns out that `sideEffects` field was ignored and `isWeb()` check evaluated to static false, removing `initializers.ts` from the bundle. Fixes - #6740 - #6839 Tested it on RNGH web example app using Expo52 Co-authored-by: Michał Bert <[email protected]>
Turns out that `sideEffects` field was ignored and `isWeb()` check evaluated to static false, removing `initializers.ts` from the bundle. Fixes - #6740 - #6839 Tested it on RNGH web example app using Expo52 Co-authored-by: Michał Bert <[email protected]>
Turns out that `sideEffects` field was ignored and `isWeb()` check evaluated to static false, removing `initializers.ts` from the bundle. Fixes - #6740 - #6839 Tested it on RNGH web example app using Expo52 Co-authored-by: Michał Bert <[email protected]>
Description
file logger.ts in node-module react-native renimate there is an error
Cannot find name '__reanimatedLoggerConfig'.t .How do i modify
Steps to reproduce
import Carousel from 'react-native-reanimated-carousel';
<Carousel
autoPlay={true}
loop={true}
autoPlayInterval={3000}
width={deviceWidth}
height={240}
data={[]}
onSnapToItem={(index) => {
this.setState({ activeSlide: index });
this.forceUpdate();
}}
renderItem={(item: { item: ImageHomeModel, index: Number }) => this.RenderImageHome(item.item)}
/>
Snack or a link to a repository
git
Reanimated version
3.6.1
React Native version
0.75.4
Platforms
Android
JavaScript runtime
None
Workflow
None
Architecture
None
Build type
None
Device
None
Device model
pixel 7a
Acknowledgements
Yes
The text was updated successfully, but these errors were encountered: