I've updated one of my cloud functions and I want to test it on local before I publish it to live and I'm using firebase emulators:start
to run the functions and it works without any error but my new code doesn't work.
Ex;
The old code: console.log('before')
The new code: console.log('then')
and when I trigger the functions it prints before.
I've read the doc but couldn't find anything useful. Is there something that I'm missing to run my updated code? My NodeJS version is 10 and I'm using RXJS. Any help/idea would be useful. Thank you...