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>
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
/** @typedef {import("./AsyncDependenciesBlock")} AsyncDependenciesBlock */
|
|
/** @typedef {import("./Chunk")} Chunk */
|
|
/** @typedef {import("./ChunkGroup")} ChunkGroup */
|
|
/** @typedef {import("./DependenciesBlock")} DependenciesBlock */
|
|
/** @typedef {import("./Module")} Module */
|
|
|
|
/**
|
|
* @param {ChunkGroup} chunkGroup the ChunkGroup to connect
|
|
* @param {Chunk} chunk chunk to tie to ChunkGroup
|
|
* @returns {void}
|
|
*/
|
|
const connectChunkGroupAndChunk = (chunkGroup, chunk) => {
|
|
if (chunkGroup.pushChunk(chunk)) {
|
|
chunk.addGroup(chunkGroup);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* @param {ChunkGroup} parent parent ChunkGroup to connect
|
|
* @param {ChunkGroup} child child ChunkGroup to connect
|
|
* @returns {void}
|
|
*/
|
|
const connectChunkGroupParentAndChild = (parent, child) => {
|
|
if (parent.addChild(child)) {
|
|
child.addParent(parent);
|
|
}
|
|
};
|
|
|
|
module.exports.connectChunkGroupAndChunk = connectChunkGroupAndChunk;
|
|
module.exports.connectChunkGroupParentAndChild =
|
|
connectChunkGroupParentAndChild;
|