UNPKG

@nx/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

7 lines (6 loc) 245 B
import { Tree } from '@nx/devkit'; export interface Schema { name: string; ci: 'github' | 'azure' | 'circleci' | 'bitbucket-pipelines' | 'gitlab'; } export declare function ciWorkflowGenerator(tree: Tree, schema: Schema): Promise<void>;