Spaces:
Running
Running
| import { validateProfiles } from "./profile-utils.mjs"; | |
| const result = validateProfiles(); | |
| if (result.errors.length) { | |
| console.error(result.errors.join("\n")); | |
| process.exit(1); | |
| } | |
| console.log( | |
| `validated ${result.profiles.length} model profiles for ${result.catalogCount} scraped model rows`, | |
| ); | |