@catladder/cli
Version:
Panter cli tool for cloud CI/CD and DevOps
9 lines (8 loc) • 465 B
TypeScript
import { BashExpression } from "../../bash/BashExpression";
import type { ComponentContextWithBuild } from "../../types";
import { type Context } from "../../types";
export declare const ensureNodeVersion: (context: Context) => string[];
export declare const getYarnInstall: (context: Context, options?: {
noCustomPostInstall: boolean;
}) => string[];
export declare const getDockerAppCopyAndBuildScript: (context: ComponentContextWithBuild) => BashExpression;