@nucel.cloud/cli
Version:
The open-source deployment platform for modern web apps
17 lines • 656 B
TypeScript
import { Framework } from './types.js';
export type { Framework };
export interface FrameworkConfig {
buildCommand: string;
outputDirectory: string;
envPrefixes: string[];
configFiles: string[];
dependencies: string[];
}
export declare const FRAMEWORK_CONFIGS: Record<Framework, FrameworkConfig>;
export declare function getFrameworkConfig(framework: Framework): FrameworkConfig;
export declare function getFrameworkDefaults(framework: Framework): {
buildCommand: string;
outputDirectory: string;
};
export declare function isAppEnvVar(key: string, framework: Framework): boolean;
//# sourceMappingURL=framework-configs.d.ts.map