From 934e4e51e1ddacb9eb0acbccd86e37f7da04a7ee Mon Sep 17 00:00:00 2001 From: christhompsongoogle <106194718+christhompsongoogle@users.noreply.github.com> Date: Fri, 9 Dec 2022 15:32:11 -0800 Subject: [PATCH] Update the download_emulators default to true. The user has indicated they want to use the emulators we should download them right away to speed up their use and enable the suite to work better offline. (#5123) --- src/init/features/emulators.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init/features/emulators.ts b/src/init/features/emulators.ts index 84e6ee97ad9..3c8bf3ec245 100644 --- a/src/init/features/emulators.ts +++ b/src/init/features/emulators.ts @@ -95,7 +95,7 @@ export async function doSetup(setup: any, config: any) { name: "download", type: "confirm", message: "Would you like to download the emulators now?", - default: false, + default: true, }, ]); }