gh-pages -d build 给出错误“文件”参数必须是非空字符串

IT技术 reactjs github-pages
2021-05-04 21:57:02

我包括了在 github 上部署我的 create react 应用程序的所有步骤。我的 package.json 的片段

"scripts": {
    "start": "node scripts/start.js",
    "build": "node scripts/build.js",`enter code here`
    "test": "node scripts/test.js",
    "homepage": "http://myName.github.io/create-react-wars",
    "predeploy": "npm run build",
    "deploy": "gh-pages -d build"
},

这是我得到的错误

gh-pages -d build
"file" argument must be a non-empty string
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! react-star-wars@0.1.0 deploy: `gh-pages -d build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the react-star-wars@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:\Users\Jishu\AppData\Roaming\npm-cache\_logs\2019-08-02T17_13_43_435Z-debug.log
2个回答

遇到同样的问题;这个答案解决了我的问题:https : //stackoverflow.com/a/57315930/11879312

“似乎是 gh-pages 2.1 中的一个错误。我通过将 gh-pages 降级到 2.0 版解决了我的问题:yarn add gh-pages@2.0 -D 或 npm install gh-pages@2.0 --dev。”

我认为命令是这样的。

gatsby -d public -b master

其中 public 是您要推送的文件夹,而 master 是您要推送到的分支。请在此之前运行您的构建