web-dev-qa-db-ja.com

「ファイル」引数は文字列型でなければなりません。 npmで未定義の受信タイプを実行すると、gh-pagesにデプロイが実行されます

Ghページに反応アプリケーションをデプロイしようとしていました。私は以前にそれをやったことがあるが、この種のエラーが発生するのはこれが初めてである。それは言う

「ファイル」引数は文字列型でなければなりません。未定義の受信タイプ

Node_modulesフォルダーを削除して、npm installですべてのパッケージを再インストールしようとしましたが、それでも同じエラーが見つかりました

以下は私のpackage.jsonファイルです

{
      "name": "qrummy",
      "version": "0.1.0",
      "homepage": "https://quiph.github.io/QRummy/",
      "private": true,
      "dependencies": {
        "firebase": "^6.2.4",
        "gh-pages": "^2.1.0",
        "react": "^16.8.6",
        "react-dom": "^16.8.6",
        "react-scripts": "3.0.1"
      },
      "scripts": {
        "start": "react-scripts start",
        "build": "react-scripts build",
        "test": "react-scripts test",
        "predeploy": "npm run build",
        "deploy": "gh-pages -d build",
        "eject": "react-scripts eject"
      },
      "eslintConfig": {
        "extends": "react-app"
      },
      "browserslist": {
        "production": [
          ">0.2%",
          "not dead",
          "not op_mini all"
        ],
        "development": [
          "last 1 chrome version",
          "last 1 firefox version",
          "last 1 safari version"
        ]
      }
    }

そして、これは私のメインのindex.jsファイルです

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';

ReactDOM.render(<App />, document.getElementById('root'));

// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
serviceWorker.unregister();

エラー出力は以下の通り

 [email protected] deploy /home/qtalkdev/Krunal/github/QRummy
> gh-pages -d build

The "file" argument must be of type string. Received type undefined
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] deploy: `gh-pages -d build`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the [email protected] 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!     /home/qtalkdev/.np`enter code here`m/_logs/2019-08-01T17_28_14_611Z-debug.log
16
Krunal Lia

現在のバージョンは機能していないようです。今日も同じ問題に直面しました。 gh-pagesモジュールをアンインストールします。バージョン2.0.1をインストールして動作しました。

19
JohnGaltRu