We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7dfe9e commit 87f32b8Copy full SHA for 87f32b8
packages/create-react-native-library/src/utils/generateExampleApp.ts
@@ -77,8 +77,14 @@ export default async function generateExampleApp({
77
'--skip-install',
78
'--npm',
79
]
80
- : // `npx create-expo-app example --no-install`
81
- ['create-expo-app@latest', directory, '--no-install'];
+ : // `npx create-expo-app example --no-install --template blank`
+ [
82
+ 'create-expo-app@latest',
83
+ directory,
84
+ '--no-install',
85
+ '--template',
86
+ 'blank',
87
+ ];
88
89
await spawn('npx', args, {
90
cwd: dest,
0 commit comments