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>
22 lines
1.0 KiB
JavaScript
22 lines
1.0 KiB
JavaScript
"use strict";
|
|
const _process = process;
|
|
// Not shown here: Additional logic to correctly interact with process's events, either using this direct manipulation, or via the API
|
|
let originalOnWarning;
|
|
if (Array.isArray(_process._events.warning)) {
|
|
originalOnWarning = _process._events.warning[0];
|
|
_process._events.warning[0] = onWarning;
|
|
}
|
|
else {
|
|
originalOnWarning = _process._events.warning;
|
|
_process._events.warning = onWarning;
|
|
}
|
|
const messageMatch = /(?:--(?:experimental-)?loader\b|\bCustom ESM Loaders\b)/;
|
|
function onWarning(warning, ...rest) {
|
|
// Suppress warning about how `--loader` is experimental
|
|
if ((warning === null || warning === void 0 ? void 0 : warning.name) === 'ExperimentalWarning' &&
|
|
messageMatch.test(warning === null || warning === void 0 ? void 0 : warning.message))
|
|
return;
|
|
// Will be undefined if `--no-warnings`
|
|
return originalOnWarning === null || originalOnWarning === void 0 ? void 0 : originalOnWarning.call(this, warning, ...rest);
|
|
}
|
|
//# sourceMappingURL=child-require.js.map
|