Closed Jekiwijaya closed 5 years ago
Hello, I using react-tracking in my react native projects.
But when I enable the transform: { inilineRequires: true } the project breaks. I found out if I comment the react-tracking, it works as expected. Note that it only affected in android only.
transform: { inilineRequires: true }
https://github.com/Jekiwijaya/react-tracking-bug-inline-require-react-native
The bug is make maximum call stack / recursive in some line.
I think the problem comes from core-js, which override the defineProperty, but I'm not really sure.
defineProperty
Find the solution. to fix, upgrade to 0.59 react-native version, since it's upgrade the android JSC.
Hello, I using react-tracking in my react native projects.
But when I enable the
transform: { inilineRequires: true }
the project breaks. I found out if I comment the react-tracking, it works as expected. Note that it only affected in android only.Example Repo
https://github.com/Jekiwijaya/react-tracking-bug-inline-require-react-native
The bug is make maximum call stack / recursive in some line.
I think the problem comes from core-js, which override the
defineProperty
, but I'm not really sure.