@@ -41,6 +41,9 @@ const settled = await Promise.allSettled(
41
41
42
42
const install = await getCommand ( detected , "install" , [ "--silent" ] ) ;
43
43
const installArgs = install . split ( " " ) . slice ( 1 , - 1 ) ;
44
+ console . log (
45
+ `Installing ${ example } with ${ detected } ${ installArgs . join ( " " ) } `
46
+ ) ;
44
47
const installResult = await execa ( detected , installArgs , options ) ;
45
48
46
49
if ( installResult . exitCode ) {
@@ -54,6 +57,7 @@ const settled = await Promise.allSettled(
54
57
) ;
55
58
56
59
if ( hasPrisma ) {
60
+ console . log ( "Generating prisma types for" , example ) ;
57
61
const prismaGenerate = await execa (
58
62
"npx" ,
59
63
[ "prisma" , "generate" ] ,
@@ -69,6 +73,7 @@ const settled = await Promise.allSettled(
69
73
70
74
const build = await getCommand ( detected , "run" , [ "build" ] ) ;
71
75
const buildArgs = build . split ( " " ) . slice ( 1 ) ;
76
+ console . log ( `Building ${ example } with ${ detected } ${ buildArgs . join ( " " ) } ` ) ;
72
77
const buildResult = await execa ( detected , buildArgs , options ) ;
73
78
74
79
if ( buildResult . exitCode ) {
@@ -90,6 +95,9 @@ const settled = await Promise.allSettled(
90
95
91
96
const typecheck = await getCommand ( detected , "run" , [ "typecheck" ] ) ;
92
97
const typecheckArgs = typecheck . split ( " " ) . slice ( 1 ) ;
98
+ console . log (
99
+ `Typechecking ${ example } with ${ detected } ${ typecheckArgs . join ( " " ) } `
100
+ ) ;
93
101
const typecheckResult = await execa ( detected , typecheckArgs , options ) ;
94
102
95
103
if ( typecheckResult . exitCode ) {
0 commit comments