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;