Skip to content

Commit 9452446

Browse files
authored
Fix pnpm 9.x package resolution (openapi-ts#1629)
1 parent 488b87e commit 9452446

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/update-examples.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ async function generateSchemas() {
3030
// biome-ignore lint/suspicious/noConsoleLog: this is a script
3131
console.log(`✔︎ [${schemasDoneCount}/${schemaTotalCount}] Updated ${name} (${timeMs}ms)`);
3232
} catch (error) {
33-
console.error(`✘ [${schemasDoneCount}/${schemaTotalCount}] Failed to update ${name}`, { error: error instanceof Error ? error.message : error });
33+
console.error(`✘ [${schemasDoneCount}/${schemaTotalCount}] Failed to update ${name}`, {
34+
error: error instanceof Error ? error.message : error,
35+
});
3436
}
3537
};
3638

0 commit comments

Comments
 (0)