問題
Firebase Cloud Functionsにて、
firebase deploy
時に以下のようなエラーが出てdeployができなくなった。
There was an error deploying functions
- Error Failed to update function xxx in region yyy
- Error Failed to update function xxx in region yyy
- Error Failed to update function xxx in region yyy
・・・
解決策
package.json内のモジュールのバージョンが変わっていたため、以下コマンドにてモジュールをアップデートする必要があった
npm install
Happy Developing!