I have a Firebase project that has started to grow in amount of functions. My functions folder looks something like:
/functions
|--/lib (compiled to js)
|--index.ts (exports each function )
|--/reducers
|----red1.ts
|----red2.ts
|--/listeners
|----list1.ts
|----list2.ts
|--package.json
The problem I'm facing, is that the same code is deployed for each function. So for this example, I have 4 functions.They run without a problem.But when deployed, each one contains the code for all other functions as well, not just the one they use. This makes deployed take a long time and it's messy as well.
I would like a way to maybe split them into separate folders that deploy individually and contain only the code they require. Would something like this be possible?