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>
10 lines
457 B
Plaintext
10 lines
457 B
Plaintext
// TODO: consolidate on using a helpers file at some point in the future, which
|
|
// is the approach currently used to export Parser and applyExtends for ESM:
|
|
const {applyExtends, cjsPlatformShim, Parser, Yargs, processArgv} = require('./build/index.cjs')
|
|
Yargs.applyExtends = (config, cwd, mergeExtends) => {
|
|
return applyExtends(config, cwd, mergeExtends, cjsPlatformShim)
|
|
}
|
|
Yargs.hideBin = processArgv.hideBin
|
|
Yargs.Parser = Parser
|
|
module.exports = Yargs
|