fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(generate): move log to after client log message

authored by

Jordan Shatford and committed by
Jordan Shatford
4cab0be8 18ffe36f

+1 -2
+1 -2
src/index.ts
··· 193 193 194 194 if (config.write) { 195 195 logClientMessage(config.client); 196 + logMissingDependenciesWarning(config.client, dependencies); 196 197 await writeClient(client, templates, config); 197 198 processOutput(config, dependencies); 198 199 } 199 200 200 201 console.log('✨ Done! Your client is located in:', config.output); 201 - 202 - logMissingDependenciesWarning(config.client, dependencies); 203 202 204 203 return client; 205 204 }