firebaseに対してdeployしたかったのでターミナルで以下のエラーが発生
Error: An unexpected error has occurred.
Having trouble? Try again or contact support with contents of firebase-debug.log
firebase-debug.log を確認してみる
TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type undefined
こちらとほぼ同じ内容でした https://github.com/firebase/firebase-tools/issues/1915
このエラーのため、firebaseに対してデプロイが出来ない状況でした。
firebase init でfirebaseの初期設定をもう一度行うことで解決しました。
エラー文でgoogle検索して様々な解決方法(firebase.json内のfunctionsキーを作成しなければいけない、各種ツールのアップデート&ダウングレード等)が出てきたのですが、結局既存のfirebase.jsonを別名保存して、新たにfirebase init し直す事で解決しました。