Deploying functions with dependencies

Here's a scenario. Say you have a project with a few functions (e.g. 30). Common code has been refactored in a utility.js/.ts file so that it can be accessed from some of these functions. At some point, a bug is fixed in this file which is used in say, 20 of these files. Now... in Firebase, it's up to the developer to trace back the calls and figure out the top functions/endpoints to deploy. This is time-consuming, non-productive and error-prone. How about Supabase? Is there a way to deploy everything so no function gets left behind? I see in the docs that each function must be uploaded individually? If so, it sounds pretty limiting. What is your workflow?
Was this page helpful?