Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
743 B
TypeScript
33 lines
743 B
TypeScript
import { readdirSync, writeFileSync, statSync } from "fs";
|
|
|
|
const ignore = ["src/index.ts"];
|
|
|
|
function checkSrcDir(path: string): string[] {
|
|
const lines: string[] = [];
|
|
|
|
for (const item of readdirSync(path)) {
|
|
const itemPath = path + "/" + item;
|
|
|
|
if (ignore.includes(itemPath)) {
|
|
continue;
|
|
}
|
|
|
|
if (statSync(itemPath).isDirectory()) {
|
|
lines.push(...checkSrcDir(itemPath));
|
|
} else if (item.endsWith(".ts")) {
|
|
lines.push('export * from "./' + itemPath.slice(4, -2) + 'js"');
|
|
}
|
|
}
|
|
|
|
return lines;
|
|
}
|
|
|
|
const lines = checkSrcDir("src");
|
|
|
|
lines.push(
|
|
'import { zodToJsonSchema } from "./zodToJsonSchema.js"',
|
|
"export default zodToJsonSchema;",
|
|
);
|
|
|
|
writeFileSync("./src/index.ts", lines.join(";\n"));
|