File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
- Allow configuration of the Cloud Function generated for full-stack web frameworks (#5504 )
2
+ - Fixes bug where passing ` --port ` flag in ` functions:shell ` does not set which port to emulate functions (#5521 )
2
3
- Improve error message during deploy when given invalid hosting rewrite rule (#5533 )
3
4
- Generate ESM-compatible SSR function for web frameworks (#5540 )
Original file line number Diff line number Diff line change @@ -49,6 +49,10 @@ export const actionFunction = async (options: Options) => {
49
49
// If the port was not set by the --port flag or determined from 'firebase.json', just scan
50
50
// up from 5000
51
51
let port = 5000 ;
52
+ if ( typeof options . port === "number" ) {
53
+ port = options . port ;
54
+ }
55
+
52
56
const functionsInfo = remoteEmulators [ Emulators . FUNCTIONS ] ;
53
57
if ( functionsInfo ) {
54
58
utils . logLabeledWarning (
You can’t perform that action at this time.
0 commit comments