Skip to content

Commit

Permalink
fix(react-native): should ask for app name when preset is react native (
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi authored Apr 10, 2024
1 parent fe90350 commit aa6d464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/create-nx-workspace/bin/create-nx-workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,8 @@ async function determineStack(
case Preset.NextJsStandalone:
case Preset.RemixStandalone:
case Preset.RemixMonorepo:
case Preset.ReactNative:
case Preset.Expo:
return 'react';
case Preset.Vue:
case Preset.VueStandalone:
Expand All @@ -397,8 +399,6 @@ async function determineStack(
case Preset.TsStandalone:
return 'none';
case Preset.WebComponents:
case Preset.ReactNative:
case Preset.Expo:
default:
return 'unknown';
}
Expand Down

0 comments on commit aa6d464

Please sign in to comment.