在专案中找不到child_process-本机回应

在react native 0.61.4上创建了一个新项目 复制了上一个项目0.55.4的屏幕和功能。 一切都已构建,但捆绑失败并出现以下错误:

错误:捆绑失败:错误:无法解析child_process中的模块node_modules\jest-changed-files\node_modules\execa\index.js:在项目中找不到child_process。

Error: Bundling failed

Package.json:

{

  "version": "0.0.1","private": true,"scripts": {
    "android": "react-native run-android","ios": "react-native run-ios","start": "react-native start","test": "jest","lint": "eslint ."
  },"dependencies": {
    "execa": "^3.2.0","jest-changed-files": "^24.9.0","mockjs": "^1.1.0","moment": "^2.24.0","native-base": "^2.13.8","react": "16.9.0","react-moment": "^0.9.6","react-month-picker": "^1.3.11","react-native": "0.61.4","react-native-datepicker-dialog": "0.0.9","react-native-gesture-handler": "^1.5.0","react-native-image-slider-show": "^1.0.3","react-native-keyboard-aware-scroll-view": "^0.9.1","react-native-linear-gradient": "^2.5.6","react-native-modal-datetime-picker": "^7.6.0","react-native-month-selector": "^1.4.0","react-native-responsive-screen": "^1.3.0","react-native-simple-table": "0.0.3","react-native-slideshow": "^1.0.1","react-native-spinkit": "^1.5.0","react-native-svg": "^9.13.3","react-native-swipe-gestures": "^1.0.4","react-navigation": "^4.0.10","react-navigation-stack": "^1.10.3","react-time-picker": "^3.7.2"
  },"devDependencies": {
    "@babel/core": "^7.6.4","@babel/runtime": "^7.6.3","@react-native-community/eslint-config": "^0.0.5","babel-jest": "^24.9.0","eslint": "^6.6.0","jest": "^24.9.0","metro-react-native-babel-preset": "^0.57.0","path": "^0.12.7","react-test-renderer": "16.9.0"
  },"jest": {
    "preset": "react-native"
  },"browser": { "child_process": false }
}

任何帮助将不胜感激!

wenfang204 回答:在专案中找不到child_process-本机回应

请清理您的项目,然后运行项目。某些库未通过自动链接恐惧来添加,因此请检查并正确添加,例如firebase库需要手动添加。我附上了一些截图,请检查。for add dependency manually

add class path properly

本文链接:https://www.f2er.com/3111734.html

大家都在问