@@ -53,7 +53,7 @@ async function gatherConfig(
5353
5454 while ( ! isValid ) {
5555 const response = await text ( {
56- message : "📝 What is your project named? (directory name or path)" ,
56+ message : "What is your project named? (directory name or path)" ,
5757 placeholder : defaultName ,
5858 initialValue : flags . projectName ,
5959 defaultValue : defaultName ,
@@ -87,7 +87,7 @@ async function gatherConfig(
8787 flags . database !== undefined
8888 ? Promise . resolve ( flags . database )
8989 : select < ProjectDatabase > ( {
90- message : "💾 Which database would you like to use?" ,
90+ message : "Which database would you like to use?" ,
9191 options : [
9292 {
9393 value : "libsql" ,
@@ -105,15 +105,14 @@ async function gatherConfig(
105105 flags . auth !== undefined
106106 ? Promise . resolve ( flags . auth )
107107 : confirm ( {
108- message :
109- "🔐 Would you like to add authentication with Better-Auth?" ,
108+ message : "Would you like to add authentication with Better-Auth?" ,
110109 initialValue : DEFAULT_CONFIG . auth ,
111110 } ) ,
112111 features : ( ) =>
113112 flags . features !== undefined
114113 ? Promise . resolve ( flags . features )
115114 : multiselect < ProjectFeature > ( {
116- message : "✨ Which features would you like to add?" ,
115+ message : "Which features would you like to add?" ,
117116 options : [
118117 {
119118 value : "docker" ,
@@ -137,7 +136,7 @@ async function gatherConfig(
137136 flags . git !== undefined
138137 ? Promise . resolve ( flags . git )
139138 : confirm ( {
140- message : "🗃️ Initialize a new git repository?" ,
139+ message : "Initialize a new git repository?" ,
141140 initialValue : DEFAULT_CONFIG . git ,
142141 } ) ,
143142 packageManager : async ( ) => {
@@ -147,13 +146,13 @@ async function gatherConfig(
147146 const detectedPackageManager = getUserPkgManager ( ) ;
148147
149148 const useDetected = await confirm ( {
150- message : `📦 Use ${ detectedPackageManager } as your package manager?` ,
149+ message : `Use ${ detectedPackageManager } as your package manager?` ,
151150 } ) ;
152151
153152 if ( useDetected ) return detectedPackageManager ;
154153
155154 return select < PackageManager > ( {
156- message : "📦 Which package manager would you like to use?" ,
155+ message : "Which package manager would you like to use?" ,
157156 options : [
158157 { value : "npm" , label : "npm" , hint : "Node Package Manager" } ,
159158 {
@@ -198,25 +197,23 @@ function displayConfig(config: Partial<ProjectConfig>) {
198197 const configDisplay = [ ] ;
199198
200199 if ( config . projectName ) {
201- configDisplay . push ( `${ pc . blue ( "📝 Project Name:" ) } ${ config . projectName } ` ) ;
200+ configDisplay . push ( `${ pc . blue ( "Project Name:" ) } ${ config . projectName } ` ) ;
202201 }
203202 if ( config . database ) {
204- configDisplay . push ( `${ pc . blue ( "💾 Database:" ) } ${ config . database } ` ) ;
203+ configDisplay . push ( `${ pc . blue ( "Database:" ) } ${ config . database } ` ) ;
205204 }
206205 if ( config . auth !== undefined ) {
207- configDisplay . push ( `${ pc . blue ( "🔐 Authentication:" ) } ${ config . auth } ` ) ;
206+ configDisplay . push ( `${ pc . blue ( "Authentication:" ) } ${ config . auth } ` ) ;
208207 }
209208 if ( config . features ?. length ) {
210- configDisplay . push (
211- `${ pc . blue ( "✨ Features:" ) } ${ config . features . join ( ", " ) } ` ,
212- ) ;
209+ configDisplay . push ( `${ pc . blue ( "Features:" ) } ${ config . features . join ( ", " ) } ` ) ;
213210 }
214211 if ( config . git !== undefined ) {
215- configDisplay . push ( `${ pc . blue ( "🗃️ Git Init:" ) } ${ config . git } ` ) ;
212+ configDisplay . push ( `${ pc . blue ( "Git Init:" ) } ${ config . git } ` ) ;
216213 }
217214 if ( config . packageManager ) {
218215 configDisplay . push (
219- `${ pc . blue ( "📦 Package Manager:" ) } ${ config . packageManager } ` ,
216+ `${ pc . blue ( "Package Manager:" ) } ${ config . packageManager } ` ,
220217 ) ;
221218 }
222219
@@ -228,7 +225,7 @@ async function main() {
228225 try {
229226 process . stdout . write ( "\x1Bc" ) ;
230227 renderTitle ( ) ;
231- intro ( pc . magenta ( "✨ Creating a new Better-T-Stack project" ) ) ;
228+ intro ( pc . magenta ( "Creating a new Better-T-Stack project" ) ) ;
232229 program
233230 . name ( "create-better-t-stack" )
234231 . description ( "Create a new Better-T Stack project" )
@@ -280,7 +277,7 @@ async function main() {
280277 ! options . yes &&
281278 Object . values ( flagConfig ) . some ( ( v ) => v !== undefined )
282279 ) {
283- log . info ( pc . yellow ( "🎯 Using these pre-selected options:" ) ) ;
280+ log . info ( pc . yellow ( "Using these pre-selected options:" ) ) ;
284281 log . message ( displayConfig ( flagConfig ) ) ;
285282 log . message ( "" ) ;
286283 }
@@ -304,7 +301,7 @@ async function main() {
304301 : await gatherConfig ( flagConfig ) ;
305302
306303 if ( options . yes ) {
307- log . info ( pc . yellow ( "🎯 Using these default options:" ) ) ;
304+ log . info ( pc . yellow ( "Using these default options:" ) ) ;
308305 log . message ( displayConfig ( config ) ) ;
309306 log . message ( "" ) ;
310307 }
@@ -319,7 +316,7 @@ async function main() {
319316 ) ,
320317 ) ;
321318
322- outro ( pc . magenta ( "🎉 Project created successfully!" ) ) ;
319+ outro ( pc . magenta ( "Project created successfully!" ) ) ;
323320 } catch ( error ) {
324321 s . stop ( pc . red ( "Failed" ) ) ;
325322 if ( error instanceof Error ) {
0 commit comments