11import {
2+ color ,
23 intro ,
34 note ,
45 outro ,
@@ -9,6 +10,7 @@ import {
910 RnefError ,
1011 type SupportedRemoteCacheProviders ,
1112} from '@rnef/tools' ;
13+ import { vice } from 'gradient-string' ;
1214import path from 'path' ;
1315import type { TemplateInfo } from '../templates.js' ;
1416import { validateProjectName } from '../validate-project-name.js' ;
@@ -45,7 +47,7 @@ export function printVersionMessage() {
4547
4648export function printWelcomeMessage ( ) {
4749 console . log ( '' ) ;
48- intro ( `Hello There !` ) ;
50+ intro ( `Welcome to ${ color . bold ( vice ( 'React Native Enterprise Framework' ) ) } !` ) ;
4951}
5052
5153export function printByeMessage ( targetDir : string ) {
@@ -103,7 +105,7 @@ export function promptPlatforms(
103105 ) ;
104106
105107 return promptMultiselect ( {
106- message : 'Select platforms: ' ,
108+ message : 'What platforms do you want to start with? ' ,
107109 initialValues : defaultPlatforms ,
108110 // @ts -expect-error todo
109111 options : platforms . map ( ( platform ) => ( {
@@ -139,7 +141,7 @@ export function promptBundlers(
139141 }
140142
141143 return promptSelect ( {
142- message : 'Select bundler: ' ,
144+ message : 'Which bundler do you want to use? ' ,
143145 initialValues : [ bundlers [ 0 ] ] ,
144146 // @ts -expect-error todo fixup type
145147 options : bundlers . map ( ( bundler ) => ( {
@@ -151,7 +153,7 @@ export function promptBundlers(
151153
152154export function promptRemoteCacheProvider ( ) : Promise < SupportedRemoteCacheProviders | null > {
153155 return promptSelect ( {
154- message : 'Select remote cache provider: ' ,
156+ message : 'Which remote cache provider do you want to use? ' ,
155157 initialValue : 'github-actions' ,
156158 options : [
157159 {
0 commit comments