Skip to content

Commit 5f39c67

Browse files
committed
refactor: tweak order for choices
1 parent 668d734 commit 5f39c67

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/create.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,17 +206,17 @@ export default async function create(argv: yargs.Arguments<any>) {
206206
message: 'What type of package do you want to develop?',
207207
// @ts-ignore - seems types are wrong for inquirer
208208
choices: [
209-
{ name: 'Native view in Kotlin and Objective-C', value: 'native-view' },
210-
{ name: 'Native view in Kotlin and Swift', value: 'native-view-swift' },
211209
{ name: 'Native module in Kotlin and Objective-C', value: 'native' },
212210
{ name: 'Native module in Kotlin and Swift', value: 'native-swift' },
213211
{ name: 'Native module with C++ code', value: 'cpp' },
212+
{ name: 'Native view in Kotlin and Objective-C', value: 'native-view' },
213+
{ name: 'Native view in Kotlin and Swift', value: 'native-view-swift' },
214214
{
215-
name: 'JavaScript module with native example',
215+
name: 'JavaScript library with native example',
216216
value: 'js',
217217
},
218218
{
219-
name: 'JavaScript module with Expo example and Web support',
219+
name: 'JavaScript library with Expo example and Web support',
220220
value: 'expo',
221221
},
222222
],

0 commit comments

Comments
 (0)