Firebase Functions for Firestore Failing due to NanoMatch Issue

后端 未结 5 1015
粉色の甜心
粉色の甜心 2021-02-07 18:51

I am new to cloud functions and was testing this sample code https://github.com/firebase/functions-samples/tree/master/quickstarts/uppercase-firestore This fails to execute due

5条回答
  •  醉话见心
    2021-02-07 19:18

    Firebase team is probably/hopefully redeploying all functions without the broken nanomatch package, but for me following the advice from @abhi and redeploying immediately solved the issue!

    npm install nanomatch@1.2.9 -S
    firebase deploy --only functions
    

    (npm install in the functions folder!)

提交回复
热议问题