@catladder/pipeline
Version:
Panter workflow for cloud CI/CD and DevOps
7 lines • 382 B
TypeScript
import { BashExpression } from "../../bash/BashExpression";
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: Context) => BashExpression;