Unable to resolve module `react-native/Libraries/vendor/emitter/EventEmitter`

Updated my project to RN 0.48.1 and React 16.0.0-alpha.12. The project compiles properly and but now getting red screen of death in the iOS Simulator - both from Xcode and with RN CLI - with the following error message:

Bundling index.ios.js [development, non-minified, hmr disabled] 98.5% (766/772), failed.
error: bundling failed: "Unable to resolve module react-native/Libraries/vendor/emitter/EventEmitter from F:\coldbox-android\node_modules\react-native-root-siblings\lib\AppRegistryInjection.js: Module does not exist in the module map

This might be related to facebook/react-native#4968
To resolve try the following:

  1. Clear watchman watches: watchman watch-del-all.
  2. Delete the node_modules folder: rm -rf node_modules && npm install.
  3. Reset packager cache: rm -fr $TMPDIR/react-* or npm start -- --reset-cache."        
     分析:F:\coldbox-android\node_modules\react-native-root-siblings\lib\AppRegistryInjection.js:  中的Module找不到了,打开文件
  4. 最后解决了如下原帖在这。 特此mark
  5. change
    
    import EventEmitter from 'react-native/Libraries/EventEmitter/EventEmitter';
    
    to
    
    import EventEmitter from 'react-native/Libraries/vendor/emitter/EventEmitter';
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    上面替换不是绝对,A改为B或者是B改为A


猜你喜欢

转载自blog.csdn.net/qq_38719039/article/details/80048049