Skip to content

Commit

Permalink
update order
Browse files Browse the repository at this point in the history
  • Loading branch information
denrase committed Dec 9, 2024
1 parent d7e5f4a commit cf0c522
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -135,16 +135,17 @@ export async function run(argv: Args) {
};

switch (integration) {
case 'flutter':
await runFlutterWizzard(wizardOptions);
break;
case 'reactNative':
await runReactNativeWizard({
...wizardOptions,
uninstall: finalArgs.uninstall,
});
break;

case 'flutter':
await runFlutterWizzard(wizardOptions);
break;

case 'ios':
await runAppleWizard(wizardOptions);
break;
Expand Down

0 comments on commit cf0c522

Please sign in to comment.