我正在尝试运行现有的博览会项目。 我已经克隆了它并进行了纱线加工,然后开始了博览会。并收到此错误:
无法解析scheduler
中的模块/path-to-project/node_modules/react-native/Libraries/Renderer/oss/ReactNativeRenderer-prod.js
:急速模块图中不存在模块scheduler
这可能与https://github.com/facebook/react-native/issues/4968
有关试图通过以下方法解决它:
watchman watch-del-all
。node_modules
文件夹:rm -rf node_modules && npm install
。rm -rf /tmp/metro-bundler-cache-*
或npm start -- --reset-cache
。rm -rf /tmp/haste-map-react-native-packager-*
。线索: 尝试运行iOS模拟器时,萌芽状态卡在%99
Building JavaScript bundle [================================= ] 99%
之后:
Failed building JavaScript bundle.
答案 0 :(得分:4)
通过将这些版本添加到我的项目中来解决。
"expo": "^35.0.0",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-web": "^0.11.7"
但是,我通过更新EXPO版本遇到了其他问题。