From defbe39e87bcc419c7a5f60b295c634f630b58b7 Mon Sep 17 00:00:00 2001 From: Jason Walton Date: Thu, 13 Oct 2022 12:27:34 -0400 Subject: [PATCH] fix: Remove accidentally exported 'run' function. --- src/lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.ts b/src/lib.ts index e618a4e..d9de20b 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -1,6 +1,6 @@ import { execSync } from 'child_process'; -export function run(cmd: string, options: { env?: Record; hide?: boolean } = {}) { +function run(cmd: string, options: { env?: Record; hide?: boolean } = {}) { if (!options.hide) { console.log(`$ ${cmd}`); }