From 28693e52876ccab92c8fb517e565e3e116eb63ee Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 16 Jan 2026 14:39:19 -0800 Subject: [PATCH] =?UTF-8?q?chore(shared):=20=F0=9F=94=A7=20Update=20shared?= =?UTF-8?q?=20dependencies=20and=20build=20scripts=20to=20enforce=20strict?= =?UTF-8?q?er=20linting=20rules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/commands/{infra.ts => devops.ts} | 10 +++++----- src/index.ts | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) rename src/commands/{infra.ts => devops.ts} (96%) diff --git a/src/commands/infra.ts b/src/commands/devops.ts similarity index 96% rename from src/commands/infra.ts rename to src/commands/devops.ts index 59b55ab..684a31a 100644 --- a/src/commands/infra.ts +++ b/src/commands/devops.ts @@ -186,12 +186,12 @@ function formatRow(check: ServiceCheck): string[] { ] } -export function createInfraCommand(): Command { - return new Command('infra') - .description('Check status of infrastructure services (npm.nasty.sh, forge.nasty.sh)') +export function createDevopsCommand(): Command { + return new Command('devops') + .description('Check status of devops services (npm.nasty.sh, forge.nasty.sh)') .option('-v, --verbose', 'Show detailed information') .action(async (options: { verbose?: boolean }) => { - const spinner = ora('Checking infrastructure status...').start() + const spinner = ora('Checking devops services...').start() try { // Run all checks in parallel @@ -205,7 +205,7 @@ export function createInfraCommand(): Command { spinner.stop() console.log() - logInfo('Infrastructure Status') + logInfo('Devops Status') console.log() const headers = ['Service', 'Status', 'Response', 'Details'] diff --git a/src/index.ts b/src/index.ts index 392ee5c..c14075e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,7 +11,7 @@ import { createUpgradeCommand } from './commands/upgrade.js' import { createVRAMCommand } from './commands/vram.js' import { createRAMCommand } from './commands/ram.js' import { createWorkflowsCommand } from './commands/workflows.js' -import { createInfraCommand } from './commands/infra.js' +import { createDevopsCommand } from './commands/devops.js' const program = new Command() @@ -32,7 +32,7 @@ program.addCommand(createUpgradeCommand()) program.addCommand(createVRAMCommand()) program.addCommand(createRAMCommand()) program.addCommand(createWorkflowsCommand()) -program.addCommand(createInfraCommand()) +program.addCommand(createDevopsCommand()) // Parse arguments program.parse()