@@ -83,9 +83,7 @@ for (const example of examples) {
83
83
84
84
const install = await getCommand ( detected , "install" , [ "--silent" ] ) ;
85
85
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 } ` ) ;
89
87
const installResult = await execa ( detected , installArgs , options ) ;
90
88
91
89
if ( installResult . exitCode ) {
@@ -115,7 +113,7 @@ for (const example of examples) {
115
113
116
114
const build = await getCommand ( detected , "run" , [ "build" ] ) ;
117
115
const buildArgs = build . split ( " " ) . slice ( 1 ) ;
118
- console . log ( `Building ${ example } with ${ detected } ${ buildArgs . join ( " " ) } ` ) ;
116
+ console . log ( `📦 Building ${ example } with ${ build } ` ) ;
119
117
const buildResult = await execa ( detected , buildArgs , options ) ;
120
118
121
119
if ( buildResult . exitCode ) {
@@ -126,9 +124,7 @@ for (const example of examples) {
126
124
127
125
const typecheck = await getCommand ( detected , "run" , [ "typecheck" ] ) ;
128
126
const typecheckArgs = typecheck . split ( " " ) . slice ( 1 ) ;
129
- console . log (
130
- `Typechecking ${ example } with ${ detected } ${ typecheckArgs . join ( " " ) } `
131
- ) ;
127
+ console . log ( `🕵️ Typechecking ${ example } with ${ typecheck } ` ) ;
132
128
const typecheckResult = await execa ( detected , typecheckArgs , options ) ;
133
129
134
130
if ( typecheckResult . exitCode ) {
0 commit comments