fix: remove dead shellQuote re-export from gcp/gcp.ts (#2551)

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 <noreply@anthropic.com>
This commit is contained in:
A 2026-03-12 18:42:09 -07:00 committed by GitHub
parent 9bb39a213a
commit ecc876f3bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 6 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@openrouter/spawn",
"version": "0.17.1",
"version": "0.17.2",
"type": "module",
"bin": {
"spawn": "cli.js"

View file

@ -1081,8 +1081,3 @@ export async function destroyInstance(name?: string): Promise<void> {
}
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";