-
Notifications
You must be signed in to change notification settings - Fork 17
Description
I'm working to update my functions to v2. I'm running into an issue with deploying v2 functions that have an uppercase letter in the function name. V1 functions with an uppercase letter in the function name deploy fine. V2 Functions with names that are all lowercase deploy fine. I know firebase-tools just released an update to support uppercase letters in v2 function names - I'm using that version.
The error I get is "Function 'myFunction' is not defined in the provided module."
If I don't use this package, I'm able to deploy a v2 function defined as:
exports.myFunction = onCall(() => { return true; })
...so it seems there's no issue on the Firebase side with v2 functions with uppercase letters in the function name.
Functions all work fine in the emulator (including v2 functions with an uppercase letter in the function name).
Anyone been able to deploy v2 functions with an uppercase letter in the function name using this package?