michangarrito/apps/backend/node_modules/@nestjs/cli/actions/build.action.d.ts
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
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>
2026-01-07 04:41:02 -06:00

23 lines
1.2 KiB
TypeScript

import { Input } from '../commands';
import { AssetsManager } from '../lib/compiler/assets-manager';
import { TsConfigProvider } from '../lib/compiler/helpers/tsconfig-provider';
import { PluginsLoader } from '../lib/compiler/plugins/plugins-loader';
import { TypeScriptBinaryLoader } from '../lib/compiler/typescript-loader';
import { ConfigurationLoader } from '../lib/configuration';
import { FileSystemReader } from '../lib/readers';
import { AbstractAction } from './abstract.action';
export declare class BuildAction extends AbstractAction {
protected readonly pluginsLoader: PluginsLoader;
protected readonly tsLoader: TypeScriptBinaryLoader;
protected readonly tsConfigProvider: TsConfigProvider;
protected readonly fileSystemReader: FileSystemReader;
protected readonly loader: ConfigurationLoader;
protected readonly assetsManager: AssetsManager;
handle(commandInputs: Input[], commandOptions: Input[]): Promise<void>;
runBuild(commandInputs: Input[], commandOptions: Input[], watchMode: boolean, watchAssetsMode: boolean, isDebugEnabled?: boolean, onSuccess?: () => void): Promise<void>;
private runSwc;
private runWebpack;
private runTsc;
private getWebpackConfigFactoryByPath;
}