We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39d1aa4 commit 077ab74Copy full SHA for 077ab74
packages/cli/commands/add/index.ts
@@ -350,7 +350,9 @@ export async function runAddCommand(
350
351
const fails: Array<{ name: string; message?: string }> = [];
352
for (const condition of preconditions) {
353
+ console.log(`running ${condition.name}`);
354
const { message, success } = await condition.run();
355
+ console.log(`finished running ${condition.name}`, message, success);
356
if (!success) fails.push({ name: condition.name, message });
357
}
358
0 commit comments