UNPKG

@nrwl/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.

11 lines (10 loc) 327 B
export declare type FileInputOutput = { input: string; output: string; }; export declare type AssetGlob = FileInputOutput & { glob: string; ignore?: string[]; dot?: boolean; }; export declare function assetGlobsToFiles(assets: Array<AssetGlob | string>, rootDir: string, outDir: string): FileInputOutput[];