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 3134761 commit c448e28Copy full SHA for c448e28
generator/cmd/generateall.ts
@@ -91,7 +91,10 @@ executeSynchronous(async () => {
91
const readme = validateAndReturnReadmePath(localPath, autoGenConfig.readmeFile || autoGenConfig.basePath);
92
pkg.packageName = getPackageString(readme);
93
94
+ const startTime = Date.now();
95
const newConfigs = await generateSchemas(readme, autoGenConfig);
96
+ const generationTime = Date.now() - startTime;
97
+ console.log(`Time taken to generate ${autoGenConfig.basePath} : ${generationTime}.`)
98
schemaConfigs.push(...newConfigs);
99
pkg.result = 'succeeded';
100
logOut(summaryLogger,
0 commit comments