From a6b59fa3401c29624f67a4d6318e512466139f7a Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Mon, 28 Sep 2020 12:14:11 +0200 Subject: [PATCH] clean up exports --- src/common.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common.ts b/src/common.ts index 92e30c4..45d90f5 100644 --- a/src/common.ts +++ b/src/common.ts @@ -14,14 +14,14 @@ export const paths = { target: "target", }; -export interface CacheConfig { +interface CacheConfig { name: string; path: string; key: string; restoreKeys?: Array; } -export interface Caches { +interface Caches { index: CacheConfig; cache: CacheConfig; // git: CacheConfig; @@ -76,7 +76,7 @@ export async function getCaches(): Promise { }; } -export async function getRustKey(): Promise { +async function getRustKey(): Promise { const rustc = await getRustVersion(); return `${rustc.release}-${rustc.host}-${rustc["commit-hash"]}`; } @@ -87,7 +87,7 @@ interface RustVersion { "commit-hash": string; } -export async function getRustVersion(): Promise { +async function getRustVersion(): Promise { const stdout = await getCmdOutput("rustc", ["-vV"]); let splits = stdout .split(/[\n\r]+/) @@ -129,7 +129,7 @@ export async function getRegistryName() { return path.basename(path.dirname(first)); } -export async function getLockfileHash() { +async function getLockfileHash() { const globber = await glob.create("**/Cargo.toml\n**/Cargo.lock", { followSymbolicLinks: false }); const files = await globber.glob(); files.sort((a, b) => a.localeCompare(b));