UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

8 lines 462 B
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;