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
TypeScript
22 lines
1.0 KiB
TypeScript
import { Input } from '../../commands';
|
|
import { Configuration } from '../configuration';
|
|
import { AssetsManager } from './assets-manager';
|
|
import { BaseCompiler } from './base-compiler';
|
|
import { PluginsLoader } from './plugins/plugins-loader';
|
|
import webpack = require('webpack');
|
|
type WebpackConfigFactory = (config: webpack.Configuration, webpackRef: typeof webpack) => webpack.Configuration;
|
|
type WebpackConfigFactoryOrConfig = WebpackConfigFactory | webpack.Configuration;
|
|
type WebpackCompilerExtras = {
|
|
inputs: Input[];
|
|
assetsManager: AssetsManager;
|
|
webpackConfigFactoryOrConfig: WebpackConfigFactoryOrConfig | WebpackConfigFactoryOrConfig[];
|
|
debug?: boolean;
|
|
watchMode?: boolean;
|
|
};
|
|
export declare class WebpackCompiler extends BaseCompiler<WebpackCompilerExtras> {
|
|
constructor(pluginsLoader: PluginsLoader);
|
|
run(configuration: Required<Configuration>, tsConfigPath: string, appName: string, extras: WebpackCompilerExtras, onSuccess?: () => void): void;
|
|
private createAfterCallback;
|
|
}
|
|
export {};
|