I\'d like to be able to deploy an individual Cloud Function for Firebase so I don\'t have to deploy my entire project every time.
There isn\'t an option through the
The CLI provides the capability to deploy a single function:
firebase deploy --only functions:myFunction
or list of functions:
firebase deploy --only functions:myFuncA,functions:myFuncB,functions:myFuncC
For more details:
firebase deploy --help