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 488b87e commit 9452446Copy full SHA for 9452446
scripts/update-examples.ts
@@ -30,7 +30,9 @@ async function generateSchemas() {
30
// biome-ignore lint/suspicious/noConsoleLog: this is a script
31
console.log(`✔︎ [${schemasDoneCount}/${schemaTotalCount}] Updated ${name} (${timeMs}ms)`);
32
} catch (error) {
33
- console.error(`✘ [${schemasDoneCount}/${schemaTotalCount}] Failed to update ${name}`, { error: error instanceof Error ? error.message : error });
+ console.error(`✘ [${schemasDoneCount}/${schemaTotalCount}] Failed to update ${name}`, {
34
+ error: error instanceof Error ? error.message : error,
35
+ });
36
}
37
};
38
0 commit comments