我不断收到 npm ERR!命令反应脚本的代码 1 使用我的代码构建

I keep getting npm ERR! code 1 for command react-scripts build with my code

我有一个 create-react-app 应用程序可以在我的 Windows 10 工作站 运行ning 节点 v12.19.0 和 npm v6.14.8 上运行。我已经能够 运行 npm startnpm run build 并且可以正常访问该应用程序。

在尝试将相同的代码部署到 DigitalOcean 的应用程序平台和 Ubuntu droplet 时,我终究无法启动该应用程序。当我 运行 npm run build:

时出现以下错误

Screenshot: "npm ERR! command sh -c CI=false react-scripts build"

Screenshot: "debug log at /root/.npm/_logs"

我认为这可能是因为我在 Windows 上开发了该应用程序,并且我项目中的某些文件夹可能导致了问题。为了对此进行测试,我再次使用 create-react-app 并能够 运行 Ubuntu 中的股票应用程序。然后我将我的 srcpublic 文件夹放入新项目文件夹并单独安装依赖项,认为这可能有帮助。没有,我马上又报错了。我只是想不通我的代码到底有什么问题。

这是我的 package.json:

{
  "name": "capstone",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "axios": "^0.21.1",
    "d3": "^6.5.0",
    "history": "^5.0.0",
    "plotly.js": "1.58.4",
    "react": "^17.0.1",
    "react-dom": "^17.0.1",
    "react-plotly.js": "2.5.1",
    "react-router": "^6.0.0-beta.0",
    "react-router-dom": "^6.0.0-beta.0",
    "react-scripts": "4.0.2"
  },
  "scripts": {
    "build": "react-scripts build",
    "start": "react-scripts start"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}

我尝试使用 buildnpm run buildCI= npm run buildCI=false npm run build,但没有成功;都是一样的错误。 npm start.

我也遇到同样的错误

如有任何帮助,我们将不胜感激。到目前为止,我已经尝试在这个项目中不使用 SO,但是这个项目占用了我太多时间。

更新

原来这是因为 plotly.js 包(不是 react-plotly.js)。我一次单独卸载一个包,直到它最终在 plotly 删除后启动。我发现了一个 GitHub 问题,有人给出了解决方案:https://github.com/plotly/react-plotly.js/issues/135

要使其正常工作,您可以使用 react-plotly.jsplotly.js-basic-dist 并稍微解决 @francesco-hayes 在评论中提到的问题。