UNPKG

@nx/gradle

Version:

The Nx Plugin for Gradle allows Gradle tasks to be run through Nx

15 lines 427 B
import { Tree } from '@nx/devkit'; export type Command = { command?: string; comments?: string[]; alwaysRun?: boolean; }; 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; //# sourceMappingURL=generator.d.ts.map