我是将React应用程序部署到Git Hub页面并接收错误。GZIP之后的文件大小:
68.67 KB buildstaticjs2.c2c334ae.chunk.js
2.98 KB buildstaticjsmain.8a72b1a2.chunk.js
774 B buildstaticjsruntime~main.8f8a00a4.js
假设该项目托管在/sort-customers-list/
上。您可以使用package.json
中的主页字段来控制它。
准备部署构建文件夹。要在https://sejob.github.io/sort-customers-list上发布它,运行:NPM运行部署
在此处了解有关部署的更多信息:
sort-customers-list@0.1.0 deploy
C:UsersSeJoDocumentsCodeDEV_HWsort-customers-list
gh-pages -d build
"文件"参数必须是类型字符串。收到的类型不确定
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! sort-customers-list@0.1.0 deploy: `gh-pages -d build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the sort-customers-list@0.1.0 deploy script.
npm ERR! This is probably not a problem with npm. There is likely
additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR!
C:UsersSeJoAppDataRoamingnpm-cache_logs2019-08-01T12_09_52_445Z-debug.log
问题出现在新版本的github页面中。只需使用此命令安装github页面的先前版本:
npm install gh-pages@2.0.1
希望它会有所帮助!
我在create-react-app
的新安装上也遇到了同样的问题。我不知道问题是什么,但是我做了以下操作:
- 将
gh-pages
从2.1.0
降级到2.0.1
- 而不是运行
npm run deploy
,而是手动运行npm run build
,然后从Commandline运行gh-pages -d build
。
首先,即使在检查了该版本是否已降级为2.0.1
之后,我也会在命令行中遇到相同的错误,但是由于某种原因,它在手动创建gh-pages
分支并将某些文件推入其中后起作用。截至目前,npm run deploy
抛出了错误,但至少来自控制台的gh-pages -d build
。
install/重新安装git更新NPM重新打开编辑器
这解决了我的问题
使用版本2.0.1
npm i gh-pages@2.0.1