-
Notifications
You must be signed in to change notification settings - Fork 295
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
Bundling failed: ReferenceError: ReactNativeRenderGenerator is not defined #195
Comments
I came across this same issue, and resolved it the same way, except I replaced _.union with
|
@ThePJMP did you also upgrade So use
|
@RishabhKarnad yes. In fact, I'm working with 0.1.3 versions and still having this issue |
@ThePJMP It looks like this will only happen when using |
This issue has been fixed with release 0.1.4 https://github.com/GeekyAnts/vue-native-core/releases/tag/v0.1.4 |
Somehow vue-native-scripts is loading vue-native-template-compiler version 0.1.3 as dependency and not 0.1.4, and then the error still occurs here, unfortunately. |
You have to upgrade all your vue-native-* dependencies I can confirm this issue was solved on version 0.1.4 |
I did this. Not sure what I am doing wrong. |
@lucasromanojf try deleting your |
Coincidentally I had to reinstall my OS, then I cloned the project, deleted the yarn.lock file, ran yarn install and it worked. Not sure if it was cache or the lock file before, but now it is working. Thank you very much! |
After upgrading vue-native-core (from 0.0.8 to 0.1.2) & react-native version (from 0.55.4 to 0.59.8) bunding failed with following error:
Bundling failed: ReferenceError: ReactNativeRenderGenerator is not defined
Compiling is failing on this line
vue-native-core/src/compiler/parser/index.js
Line 552 in b72b8ca
After manually changing ReactNativeRenderGenerator to ReactNativeRenderGenerator$1 it says error: bundling failed: ReferenceError: _ is not defined
vue-native-core/src/platforms/vue-native/compiler/native.js
Line 62 in b72b8ca
I fixed manually adding lodash, and it worked.
The text was updated successfully, but these errors were encountered: