@pellegrims/nx-remotecache-s3
Version:
Remote caching for @nrwl/nx using S3 storage
12 lines (11 loc) • 462 B
TypeScript
import type { CustomRunnerOptions } from 'nx-remotecache-custom';
import type { RemoteCacheImplementation } from 'nx-remotecache-custom/types/remote-cache-implementation';
export interface S3Options {
bucket?: string;
endpoint?: string;
forcePathStyle?: boolean;
prefix?: string;
profile?: string;
region?: string;
}
export declare const setupS3TaskRunner: (options: CustomRunnerOptions<S3Options>) => Promise<RemoteCacheImplementation>;