Skip to content

Commit

Permalink
chore(generate): move log to after client log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanshatford committed Mar 23, 2024
1 parent 18ffe36 commit 4cab0be
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,13 @@ export async function createClient(userConfig: UserConfig): Promise<Client> {

if (config.write) {
logClientMessage(config.client);
logMissingDependenciesWarning(config.client, dependencies);
await writeClient(client, templates, config);
processOutput(config, dependencies);
}

console.log('✨ Done! Your client is located in:', config.output);

logMissingDependenciesWarning(config.client, dependencies);

return client;
}

Expand Down

0 comments on commit 4cab0be

Please sign in to comment.