File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ console.log();
72
72
73
73
let unresolvedDirectory = Deno . args [ 0 ] ;
74
74
if ( flags . _ . length !== 1 ) {
75
- const userInput = prompt ( "Project Name" , "fresh-project" ) ;
75
+ const userInput = prompt ( "Project Name: " , "fresh-project" ) ;
76
76
if ( ! userInput ) {
77
77
error ( help ) ;
78
78
}
@@ -105,8 +105,9 @@ let useTwind = flags.twind || false;
105
105
if ( flags . tailwind == null && flags . twind == null ) {
106
106
if ( confirm ( "Do you want to use a styling library?" ) ) {
107
107
console . log ( ) ;
108
- console . log ( "1. Tailwind" ) ;
109
- console . log ( "2. Twind" ) ;
108
+ console . log ( `1. ${ colors . cyan ( "tailwindcss" ) } (recommended)` ) ;
109
+ console . log ( `2. ${ colors . cyan ( "Twind" ) } ` ) ;
110
+ console . log ( ) ;
110
111
switch (
111
112
( prompt ( "Which styling library do you want to use? [1]" ) || "1" ) . trim ( )
112
113
) {
You can’t perform that action at this time.
0 commit comments