I am using node.js to deploy firebase cloud function, I got a problem I have some js files require my custom functions. When my custom function is updated, how can I deploy it? For instance, I have two js files Purchase.js and MyTime.js
Puchase.js const MyTime = require('../Scoz/MyTime.js');
MyTime.js some methods
If I only modified MyTime.js how can I deploy it? Normally, I use firebase deploy --only functions: Purchase to deploy function, but if I only want to update "MyTime.js". How can I do?
Many thanks