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>
26 lines
923 B
JavaScript
Executable File
26 lines
923 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const commander = require("commander");
|
|
const commands_1 = require("../commands");
|
|
const local_binaries_1 = require("../lib/utils/local-binaries");
|
|
const bootstrap = async () => {
|
|
const program = commander;
|
|
program
|
|
.version(require('../package.json').version, '-v, --version', 'Output the current version.')
|
|
.usage('<command> [options]')
|
|
.helpOption('-h, --help', 'Output usage information.');
|
|
if ((0, local_binaries_1.localBinExists)()) {
|
|
const localCommandLoader = (0, local_binaries_1.loadLocalBinCommandLoader)();
|
|
await localCommandLoader.load(program);
|
|
}
|
|
else {
|
|
await commands_1.CommandLoader.load(program);
|
|
}
|
|
await commander.parseAsync(process.argv);
|
|
if (!process.argv.slice(2).length) {
|
|
program.outputHelp();
|
|
}
|
|
};
|
|
bootstrap();
|