@pellegrims/nx-remotecache-s3
Version:
Remote caching for @nrwl/nx using S3 storage
10 lines (9 loc) • 513 B
TypeScript
export declare const getEnv: (key: string) => string | undefined;
export declare const buildCommonCommandInput: (bucket: string | undefined, prefix: string, filename: string) => {
Bucket: string | undefined;
Key: string;
};
export declare const getHttpProxy: () => string | undefined;
export declare const getHttpsProxy: () => string | undefined;
export declare const getNoProxy: () => string | undefined;
export declare const matchesNoProxy: (subjectUrl: string, noProxy: string | undefined) => boolean;