From b8c32937b1a7dd98d6322c5b0377ad9fa2ed44d4 Mon Sep 17 00:00:00 2001 From: Satyajit Sahoo Date: Mon, 9 Dec 2024 16:03:58 +0100 Subject: [PATCH] fix: improve example app descriptions --- packages/create-react-native-library/src/input.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/create-react-native-library/src/input.ts b/packages/create-react-native-library/src/input.ts index 6b02c9a2..41cc7762 100644 --- a/packages/create-react-native-library/src/input.ts +++ b/packages/create-react-native-library/src/input.ts @@ -57,13 +57,13 @@ const LANGUAGE_CHOICES: { const EXAMPLE_CHOICES = ( [ { - title: 'Vanilla', + title: 'App with Community CLI', value: 'vanilla', description: "provides access to app's native code", disabled: false, }, { - title: 'Test app', + title: 'React Native Test App by Microsoft', value: 'test-app', description: "app's native code is abstracted away", // The test app is disabled for now until proper @@ -71,9 +71,9 @@ const EXAMPLE_CHOICES = ( disabled: !process.env.CRNL_ENABLE_TEST_APP, }, { - title: 'Expo', + title: 'App with Expo CLI', value: 'expo', - description: 'managed expo project with web support', + description: 'managed expo app with web support', disabled: false, }, ] as const