我不能在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'
1条答案
按热度按时间mpbci0fu1#
npm
在其PATH
中与node_modules/bin
一起运行。您应该能够像使用react-scripts
一样使用gh-pages
。我还建议使用 pre-script 而不是链接命令