UNPKG

@uizard/nx-fast-s3-cache

Version:

Nx s3 cache using GNU tar, pigz and multipart s3 uploads/downloads

15 lines (14 loc) 500 B
import { CustomRunnerOptions } from "../types/custom-runner-options"; import { RemoteCacheImplementation } from "../types/remote-cache-implementation"; export interface S3Options { bucket?: string; endpoint?: string; forcePathStyle?: boolean; prefix?: string; profile?: string; readOnly?: boolean; writeOnly?: boolean; region?: string; } declare const _default: (options: CustomRunnerOptions<S3Options>) => Promise<RemoteCacheImplementation>; export default _default;