@nx/gradle
Version:
15 lines (14 loc) • 373 B
TypeScript
import { Tree } from '@nx/devkit';
export type Command = {
command: string;
} | {
comment: string;
} | string;
export interface Schema {
name: string;
ci: 'github' | 'circleci';
packageManager?: null;
commands?: Command[];
}
export declare function ciWorkflowGenerator(tree: Tree, schema: Schema): Promise<void>;
export default ciWorkflowGenerator;