Firebase – How do I deploy Cloud Functions while ignoring existing functions?
Say I have the following four functions in my Firebase projects: openDoor(europe-west1) closeDoor(europe-west1) openWindow(europe-west1) closeWindow(europe-west1) Now, these functions live in two separate Node packages, i.e. one that contains openDoor and closeDoor and another one that contains openWindow and closeWindow. Error…