From fc0cfac475bfa3a1ff570bd2149763f0889ff498 Mon Sep 17 00:00:00 2001 From: "Vipul Gupta (@vipulgupta2048)" Date: Wed, 8 Nov 2023 19:52:40 +0530 Subject: [PATCH] Docs: Create version command directory Signed-off-by: Vipul Gupta (@vipulgupta2048) --- automation/build-bin.ts | 2 +- lib/commands/support/{support.ts => index.ts} | 0 lib/commands/{help/version.ts => version/index.ts} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename lib/commands/support/{support.ts => index.ts} (100%) rename lib/commands/{help/version.ts => version/index.ts} (100%) diff --git a/automation/build-bin.ts b/automation/build-bin.ts index 7c83bf1f..69cde586 100644 --- a/automation/build-bin.ts +++ b/automation/build-bin.ts @@ -15,7 +15,7 @@ * limitations under the License. */ -import type { JsonVersions } from '../lib/commands/help/version'; +import type { JsonVersions } from '../lib/commands/version/index' import { run as oclifRun } from '@oclif/core'; import * as archiver from 'archiver'; diff --git a/lib/commands/support/support.ts b/lib/commands/support/index.ts similarity index 100% rename from lib/commands/support/support.ts rename to lib/commands/support/index.ts diff --git a/lib/commands/help/version.ts b/lib/commands/version/index.ts similarity index 100% rename from lib/commands/help/version.ts rename to lib/commands/version/index.ts