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 ebf6269 commit 3e4a299Copy full SHA for 3e4a299
packages/cli/src/commands/add.ts
@@ -242,8 +242,11 @@ export default class AddCommand extends Command {
242
});
243
}
244
245
- await withSpinner('Running codegen', 'Failed to run codegen', 'Warning during codegen', async () =>
246
- await system.run(yarn ? 'yarn codegen' : 'npm run codegen'),
+ await withSpinner(
+ 'Running codegen',
247
+ 'Failed to run codegen',
248
+ 'Warning during codegen',
249
+ async () => await system.run(yarn ? 'yarn codegen' : 'npm run codegen'),
250
);
251
252
this.exit(0);
0 commit comments