From 0c32ad077a80937bb4654a6ca9a85790280404bd Mon Sep 17 00:00:00 2001 From: Nightshift Date: Thu, 2 Apr 2026 23:09:03 +0000 Subject: [PATCH] [nightshift] dead-code: remove unused code --- packages/cli/src/commands/stubs.ts | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 packages/cli/src/commands/stubs.ts diff --git a/packages/cli/src/commands/stubs.ts b/packages/cli/src/commands/stubs.ts deleted file mode 100644 index 354ce31..0000000 --- a/packages/cli/src/commands/stubs.ts +++ /dev/null @@ -1,20 +0,0 @@ -import type { Command } from "commander"; - -const STUB_COMMANDS = [ - { - name: "preview", - phase: 6, - description: "Run steps in a visible terminal without recording", - }, -] as const; - -export function registerStubCommands(program: Command): void { - for (const command of STUB_COMMANDS) { - program - .command(command.name) - .description(command.description) - .action(() => { - console.log(`Not yet implemented. Coming in Phase ${command.phase}.`); - }); - } -}