From ecc876f3bc862d697e034e449c3b5bf01b2ba5ed Mon Sep 17 00:00:00 2001 From: A <258483684+la14-1@users.noreply.github.com> Date: Thu, 12 Mar 2026 18:42:09 -0700 Subject: [PATCH] fix: remove dead shellQuote re-export from gcp/gcp.ts (#2551) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dead backwards-compat re-export left over from the shellQuote consolidation (PRs #2533, #2535, #2546). Zero consumers import shellQuote from gcp/gcp.ts — all correctly import from shared/ui.ts. Per CLAUDE.md: avoid backwards-compatibility hacks; delete unused code. Agent: code-health Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 --- packages/cli/package.json | 2 +- packages/cli/src/gcp/gcp.ts | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 8cb01912..bbab5149 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "0.17.1", + "version": "0.17.2", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/gcp/gcp.ts b/packages/cli/src/gcp/gcp.ts index 894f4719..dade7cc1 100644 --- a/packages/cli/src/gcp/gcp.ts +++ b/packages/cli/src/gcp/gcp.ts @@ -1081,8 +1081,3 @@ export async function destroyInstance(name?: string): Promise { } logInfo(`Instance '${instanceName}' destroyed`); } - -// ─── Shell Quoting ────────────────────────────────────────────────────────── - -// shellQuote is now imported from shared/ui.ts and re-exported for backwards compat -export { shellQuote } from "../shared/ui";