前提・実現したいこと
firebase deployを実行したい
発生している問題・エラーメッセージ
npm ERR! code ELIFECYCLE npm ERR! errno 2 npm ERR! functions@ lint: `eslint 'src/**/*'` npm ERR! Exit status 2 npm ERR! npm ERR! Failed at the functions@ lint 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! /Users/.npm/_logs/2020-10-03T10_08_55_848Z-debug.log Error: functions predeploy error: Command terminated with non-zero exit code2
試したこと
/Desktop/React/chatbot/functions/src/index.ts
において、
import * as functions from 'firebase-functions'; export const helloWorld = functions.https.onRequest((request, response) => { functions.logger.info("Hello logs!", {structuredData: true}); response.send("Hello from Firebase!"); });
このファイルの内容を全てコメントアウトしました。
またエラーコードで出ていた、
functions predeploy error: Command terminated with non-zero exit code2
この部分で検索をかけて色々調べて一通りは調べたのですが、解決にはいたりませんでした。
補足情報(FW/ツールのバージョンなど)
"firebase": "^7.22.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3"
あなたの回答
tips
プレビュー