Skip to content

Commit

Permalink
fix: every created example app is testing app
Browse files Browse the repository at this point in the history
  • Loading branch information
atlj committed Nov 15, 2024
1 parent ee6dd59 commit a007633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/create-react-native-library/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ async function create(_argv: yargs.Arguments<any>) {
repoUrl,
type = 'module-mixed',
languages = type === 'library' ? 'js' : 'kotlin-objc',
example = local ? 'none' : type === 'library' ? 'expo' : 'test-app',
example = local ? 'none' : type === 'library' ? 'expo' : 'vanilla',
reactNativeVersion,
} = answers;

Expand Down

0 comments on commit a007633

Please sign in to comment.