@@ -83,9 +83,7 @@ for (const example of examples) {
8383
8484 const install = await getCommand ( detected , "install" , [ "--silent" ] ) ;
8585 const installArgs = install . split ( " " ) . slice ( 1 , - 1 ) ;
86- console . log (
87- `Installing ${ example } with ${ detected } ${ installArgs . join ( " " ) } `
88- ) ;
86+ console . log ( `📥 Installing ${ example } with ${ install } ` ) ;
8987 const installResult = await execa ( detected , installArgs , options ) ;
9088
9189 if ( installResult . exitCode ) {
@@ -115,7 +113,7 @@ for (const example of examples) {
115113
116114 const build = await getCommand ( detected , "run" , [ "build" ] ) ;
117115 const buildArgs = build . split ( " " ) . slice ( 1 ) ;
118- console . log ( `Building ${ example } with ${ detected } ${ buildArgs . join ( " " ) } ` ) ;
116+ console . log ( `📦 Building ${ example } with ${ build } ` ) ;
119117 const buildResult = await execa ( detected , buildArgs , options ) ;
120118
121119 if ( buildResult . exitCode ) {
@@ -126,9 +124,7 @@ for (const example of examples) {
126124
127125 const typecheck = await getCommand ( detected , "run" , [ "typecheck" ] ) ;
128126 const typecheckArgs = typecheck . split ( " " ) . slice ( 1 ) ;
129- console . log (
130- `Typechecking ${ example } with ${ detected } ${ typecheckArgs . join ( " " ) } `
131- ) ;
127+ console . log ( `🕵️ Typechecking ${ example } with ${ typecheck } ` ) ;
132128 const typecheckResult = await execa ( detected , typecheckArgs , options ) ;
133129
134130 if ( typecheckResult . exitCode ) {
0 commit comments