From cf0c5221c3d4f72e8bcd8d78d7630af09419dea5 Mon Sep 17 00:00:00 2001 From: Denis Andrasec Date: Mon, 9 Dec 2024 14:47:10 +0100 Subject: [PATCH] update order --- src/run.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/run.ts b/src/run.ts index 4778129a..7c285777 100644 --- a/src/run.ts +++ b/src/run.ts @@ -18,8 +18,8 @@ import type { Platform } from '../lib/Constants'; import type { PackageDotJson } from './utils/package-json'; type WizardIntegration = - | 'flutter' | 'reactNative' + | 'flutter' | 'ios' | 'android' | 'cordova' @@ -135,9 +135,6 @@ export async function run(argv: Args) { }; switch (integration) { - case 'flutter': - await runFlutterWizzard(wizardOptions); - break; case 'reactNative': await runReactNativeWizard({ ...wizardOptions, @@ -145,6 +142,10 @@ export async function run(argv: Args) { }); break; + case 'flutter': + await runFlutterWizzard(wizardOptions); + break; + case 'ios': await runAppleWizard(wizardOptions); break;