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>
21 lines
517 B
JavaScript
21 lines
517 B
JavaScript
'use strict';
|
|
|
|
module.exports = exports = rebuild;
|
|
|
|
exports.usage = 'Runs "clean" and "build" at once';
|
|
|
|
const napi = require('./util/napi.js');
|
|
|
|
function rebuild(gyp, argv, callback) {
|
|
const package_json = gyp.package_json;
|
|
let commands = [
|
|
{ name: 'clean', args: [] },
|
|
{ name: 'build', args: ['rebuild'] }
|
|
];
|
|
commands = napi.expand_commands(package_json, gyp.opts, commands);
|
|
for (let i = commands.length; i !== 0; i--) {
|
|
gyp.todo.unshift(commands[i - 1]);
|
|
}
|
|
process.nextTick(callback);
|
|
}
|