Skip to content

Commit

Permalink
fix order of apphosting emulator at init (#7906)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathu97 authored Nov 5, 2024
1 parent 4c9c06e commit 53976c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulator/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ export const IMPORT_EXPORT_EMULATORS = [
];

export const ALL_SERVICE_EMULATORS = [
...(experiments.isEnabled("emulatorapphosting") ? [Emulators.APPHOSTING] : []),
Emulators.AUTH,
Emulators.FUNCTIONS,
Emulators.FIRESTORE,
Emulators.DATABASE,
Emulators.HOSTING,
...(experiments.isEnabled("emulatorapphosting") ? [Emulators.APPHOSTING] : []),
Emulators.PUBSUB,
Emulators.STORAGE,
Emulators.EVENTARC,
Expand Down

0 comments on commit 53976c9

Please sign in to comment.