File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change
1
+ - Fixed crash when starting the App Hosting emulator in certain applications (#8624 )
1
2
- Fixed issue where, with ` webframeworks ` enabled, ` firebase init hosting ` re-prompts users for source. (#8587 )
2
3
- Update typescript version in functions template to avoid build issue with @google-cloud/storage depedency (#8194 )
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ async function tripFirebasePostinstall(
224
224
return ;
225
225
}
226
226
const npmLsResults = JSON . parse ( npmLs . stdout . toString ( ) . trim ( ) ) ;
227
- const dependenciesToSearch : Dependency [ ] = Object . values ( npmLsResults . dependencies ) ;
227
+ const dependenciesToSearch : Dependency [ ] = Object . values ( npmLsResults . dependencies || { } ) ;
228
228
const firebaseUtilPaths : string [ ] = [ ] ;
229
229
for ( const dependency of dependenciesToSearch ) {
230
230
if (
You can’t perform that action at this time.
0 commit comments