.“"未被识别为内部命令(React Package.Json)

ntjbwcob  于 2022-11-19  发布在  React
关注(0)|答案(1)|浏览(129)

我不能在github页面上部署我的react项目,因为我在我的包json中所做的更改显示了以下错误:
我刚刚在脚本中添加了:公共汽车

"scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "publicar": "npm run build && ./node_modules/bin/gh-pages -d build"
  },

我之所以使用'.'是因为我需要访问node_modules,它与我的包json位于不同的位置。
当我执行命令'npm run publicar'时显示此错误:
.“"未被识别为内部命令
当我执行'npm run publicar'时,不应该显示错误,而应该显示'published'

mpbci0fu

mpbci0fu1#

npm在其PATH中与node_modules/bin一起运行。您应该能够像使用react-scripts一样使用gh-pages
我还建议使用 pre-script 而不是链接命令

"prepublicar": "npm run build",
"publicar": "gh-pages -d build"

相关问题