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>
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Alexander Akait @alexander-akait
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const makeSerializable = require("../util/makeSerializable");
|
|
const CssIcssExportDependency = require("./CssIcssExportDependency");
|
|
|
|
/** @typedef {import("../css/CssParser").Range} Range */
|
|
/** @typedef {import("../ModuleGraph")} ModuleGraph */
|
|
/** @typedef {import("../Dependency").ExportsSpec} ExportsSpec */
|
|
|
|
class CssIcssGlobalIdentifierDependency extends CssIcssExportDependency {
|
|
/**
|
|
* @param {string} name export identifier name
|
|
* @param {string} value identifier value
|
|
* @param {string | undefined} reexport reexport name
|
|
* @param {Range} range the range of dependency
|
|
*/
|
|
constructor(name, value, reexport, range) {
|
|
super(name, value, reexport, range);
|
|
this.exportMode = CssIcssExportDependency.EXPORT_MODE.APPEND;
|
|
}
|
|
|
|
get type() {
|
|
return "css global identifier";
|
|
}
|
|
|
|
/**
|
|
* Returns the exported names
|
|
* @param {ModuleGraph} moduleGraph module graph
|
|
* @returns {ExportsSpec | undefined} export names
|
|
*/
|
|
getExports(moduleGraph) {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
CssIcssGlobalIdentifierDependency.Template = CssIcssExportDependency.Template;
|
|
|
|
makeSerializable(
|
|
CssIcssGlobalIdentifierDependency,
|
|
"webpack/lib/dependencies/CssIcssGlobalDependency"
|
|
);
|
|
|
|
module.exports = CssIcssGlobalIdentifierDependency;
|