Skip to content

Commit 077ab74

Browse files
committed
more logs
1 parent 39d1aa4 commit 077ab74

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/cli/commands/add/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,9 @@ export async function runAddCommand(
350350

351351
const fails: Array<{ name: string; message?: string }> = [];
352352
for (const condition of preconditions) {
353+
console.log(`running ${condition.name}`);
353354
const { message, success } = await condition.run();
355+
console.log(`finished running ${condition.name}`, message, success);
354356
if (!success) fails.push({ name: condition.name, message });
355357
}
356358

0 commit comments

Comments
 (0)