chore: Enable logging for OpenAPI doc generation (#17126)

This commit is contained in:
Marc Littlemore
2025-07-08 17:52:54 +01:00
committed by GitHub
parent 72b945074f
commit b980897adf

View File

@@ -60,7 +60,7 @@ function bundleOpenApiSpecs() {
.forEach((specPath) => { .forEach((specPath) => {
const distSpecPath = path.resolve(ROOT_DIR, 'dist', specPath); const distSpecPath = path.resolve(ROOT_DIR, 'dist', specPath);
const command = `pnpm openapi bundle src/${specPath} --output ${distSpecPath}`; const command = `pnpm openapi bundle src/${specPath} --output ${distSpecPath}`;
shell.exec(command, { silent: true }); shell.exec(command, { silent: false });
}); });
} }