From 54f70e9bbace41826343e843a43910c7fccda6da Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Thu, 29 Jan 2026 23:44:57 -0800 Subject: [PATCH] toes version --- package.json | 4 ++-- src/cli/index.ts | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 92eedcb..d6c42c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@because/toes", - "version": "0.0.1", + "version": "0.0.2", "description": "personal web appliance - turn it on and forget about the cloud", "module": "src/index.ts", "type": "module", @@ -28,4 +28,4 @@ "@because/hype": "^0.0.1", "kleur": "^4.1.5" } -} \ No newline at end of file +} diff --git a/src/cli/index.ts b/src/cli/index.ts index c552921..826312f 100755 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -667,6 +667,10 @@ program }, }) +program + .command('version', { hidden: true }) + .action(() => console.log(program.version())) + program .command('info') .description('Show info for an app')