如何使用 Expo 清理(重置缓存)React Native。不确定是不是缓存问题

How can I clean (reset cache) of React Native using Expo. Not sure if it is cache issue

我正在使用 create-react-native-app 构建一个简单的 React Native 应用程序,仅使用 react-navigation 和 base-64(base 64 encode/decode)作为依赖项。随着时间的推移,启动应用程序变得越来越慢,现在有时它会在 运行 NPM 启动后 "Starting packager..." 卡住(等待大约 30 分钟)。

我试过用 "npm start -- --reset-cache" 启动它,但没有任何改变

启动后 运行 我在 DevTools 或终端中没有收到任何错误或警告。应用程序的性能也没有问题

怎样做才能让NPM像以前一样顺畅快速的启动?我可以采取任何常规步骤来解决此问题吗?

这是我的 package.json

{
  "name": "test",
  "version": "0.1.0",
  "private": true,
  "devDependencies": {
    "jest-expo": "~27.0.0",
    "react-devtools": "^3.2.3",
    "react-native-scripts": "1.14.0",
    "react-test-renderer": "16.3.1"
  },
  "main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
  "scripts": {
    "start": "react-native-scripts start",
    "eject": "react-native-scripts eject",
    "android": "react-native-scripts android",
    "ios": "react-native-scripts ios",
    "test": "jest"
  },
  "jest": {
    "preset": "jest-expo"
  },
  "dependencies": {
    "base-64": "^0.1.0",
    "expo": "^27.0.1",
    "react": "16.3.1",
    "react-native": "~0.55.2",
    "react-navigation": "^2.11.2"
  }
}

expo r -c

根据来自 Expo 开发人员的 this forum post,这是启动缓存清理的命令

编辑:他们已将其从 exp r -c 更改为 expo start -c

运行的命令是:

expo r -c

我正在 运行宁 expo build:ios 并且需要清除缓存的配置文件。我这样做了:

expo build:ios --clear-provisioning-profile

要查看从缓存中清除特定元素的完整命令列表,运行 expo build:ios --help

在你的控制台中 运行:

expo start 

二维码显示后,按SHIFT + R键。