From dc40b0d9694ffd1c81d178689c1ec5b3fdabf33d Mon Sep 17 00:00:00 2001 From: "Vipul Gupta (@vipulgupta2048)" Date: Wed, 8 Nov 2023 01:30:28 +0530 Subject: [PATCH] Docs: Move CLI commands files to command directories Signed-off-by: Vipul Gupta (@vipulgupta2048) --- lib/commands/{ => auth}/login.ts | 0 lib/commands/{ => auth}/logout.ts | 0 lib/commands/{ => auth}/whoami.ts | 0 lib/commands/{ => deploy}/build.ts | 0 lib/commands/{ => deploy}/deploy.ts | 0 lib/commands/{ => envs}/envs.ts | 0 lib/commands/{ => fleets}/fleets.ts | 0 lib/commands/{ => help}/version.ts | 0 lib/commands/{ => keys}/keys.ts | 0 lib/commands/{ => logs}/logs.ts | 0 lib/commands/{ => network}/scan.ts | 0 lib/commands/{ => network}/ssh.ts | 0 lib/commands/{ => network}/tunnel.ts | 0 lib/commands/{ => notes}/note.ts | 0 lib/commands/{ => orgs}/orgs.ts | 0 lib/commands/{ => platform}/join.ts | 0 lib/commands/{ => platform}/leave.ts | 0 lib/commands/{ => preload}/preload.ts | 0 lib/commands/{ => push}/push.ts | 0 lib/commands/{ => releases}/releases.ts | 0 lib/commands/{ => settings}/settings.ts | 0 lib/commands/{ => support}/support.ts | 0 lib/commands/{ => tags}/tags.ts | 0 23 files changed, 0 insertions(+), 0 deletions(-) rename lib/commands/{ => auth}/login.ts (100%) rename lib/commands/{ => auth}/logout.ts (100%) rename lib/commands/{ => auth}/whoami.ts (100%) rename lib/commands/{ => deploy}/build.ts (100%) rename lib/commands/{ => deploy}/deploy.ts (100%) rename lib/commands/{ => envs}/envs.ts (100%) rename lib/commands/{ => fleets}/fleets.ts (100%) rename lib/commands/{ => help}/version.ts (100%) rename lib/commands/{ => keys}/keys.ts (100%) rename lib/commands/{ => logs}/logs.ts (100%) rename lib/commands/{ => network}/scan.ts (100%) rename lib/commands/{ => network}/ssh.ts (100%) rename lib/commands/{ => network}/tunnel.ts (100%) rename lib/commands/{ => notes}/note.ts (100%) rename lib/commands/{ => orgs}/orgs.ts (100%) rename lib/commands/{ => platform}/join.ts (100%) rename lib/commands/{ => platform}/leave.ts (100%) rename lib/commands/{ => preload}/preload.ts (100%) rename lib/commands/{ => push}/push.ts (100%) rename lib/commands/{ => releases}/releases.ts (100%) rename lib/commands/{ => settings}/settings.ts (100%) rename lib/commands/{ => support}/support.ts (100%) rename lib/commands/{ => tags}/tags.ts (100%) diff --git a/lib/commands/login.ts b/lib/commands/auth/login.ts similarity index 100% rename from lib/commands/login.ts rename to lib/commands/auth/login.ts diff --git a/lib/commands/logout.ts b/lib/commands/auth/logout.ts similarity index 100% rename from lib/commands/logout.ts rename to lib/commands/auth/logout.ts diff --git a/lib/commands/whoami.ts b/lib/commands/auth/whoami.ts similarity index 100% rename from lib/commands/whoami.ts rename to lib/commands/auth/whoami.ts diff --git a/lib/commands/build.ts b/lib/commands/deploy/build.ts similarity index 100% rename from lib/commands/build.ts rename to lib/commands/deploy/build.ts diff --git a/lib/commands/deploy.ts b/lib/commands/deploy/deploy.ts similarity index 100% rename from lib/commands/deploy.ts rename to lib/commands/deploy/deploy.ts diff --git a/lib/commands/envs.ts b/lib/commands/envs/envs.ts similarity index 100% rename from lib/commands/envs.ts rename to lib/commands/envs/envs.ts diff --git a/lib/commands/fleets.ts b/lib/commands/fleets/fleets.ts similarity index 100% rename from lib/commands/fleets.ts rename to lib/commands/fleets/fleets.ts diff --git a/lib/commands/version.ts b/lib/commands/help/version.ts similarity index 100% rename from lib/commands/version.ts rename to lib/commands/help/version.ts diff --git a/lib/commands/keys.ts b/lib/commands/keys/keys.ts similarity index 100% rename from lib/commands/keys.ts rename to lib/commands/keys/keys.ts diff --git a/lib/commands/logs.ts b/lib/commands/logs/logs.ts similarity index 100% rename from lib/commands/logs.ts rename to lib/commands/logs/logs.ts diff --git a/lib/commands/scan.ts b/lib/commands/network/scan.ts similarity index 100% rename from lib/commands/scan.ts rename to lib/commands/network/scan.ts diff --git a/lib/commands/ssh.ts b/lib/commands/network/ssh.ts similarity index 100% rename from lib/commands/ssh.ts rename to lib/commands/network/ssh.ts diff --git a/lib/commands/tunnel.ts b/lib/commands/network/tunnel.ts similarity index 100% rename from lib/commands/tunnel.ts rename to lib/commands/network/tunnel.ts diff --git a/lib/commands/note.ts b/lib/commands/notes/note.ts similarity index 100% rename from lib/commands/note.ts rename to lib/commands/notes/note.ts diff --git a/lib/commands/orgs.ts b/lib/commands/orgs/orgs.ts similarity index 100% rename from lib/commands/orgs.ts rename to lib/commands/orgs/orgs.ts diff --git a/lib/commands/join.ts b/lib/commands/platform/join.ts similarity index 100% rename from lib/commands/join.ts rename to lib/commands/platform/join.ts diff --git a/lib/commands/leave.ts b/lib/commands/platform/leave.ts similarity index 100% rename from lib/commands/leave.ts rename to lib/commands/platform/leave.ts diff --git a/lib/commands/preload.ts b/lib/commands/preload/preload.ts similarity index 100% rename from lib/commands/preload.ts rename to lib/commands/preload/preload.ts diff --git a/lib/commands/push.ts b/lib/commands/push/push.ts similarity index 100% rename from lib/commands/push.ts rename to lib/commands/push/push.ts diff --git a/lib/commands/releases.ts b/lib/commands/releases/releases.ts similarity index 100% rename from lib/commands/releases.ts rename to lib/commands/releases/releases.ts diff --git a/lib/commands/settings.ts b/lib/commands/settings/settings.ts similarity index 100% rename from lib/commands/settings.ts rename to lib/commands/settings/settings.ts diff --git a/lib/commands/support.ts b/lib/commands/support/support.ts similarity index 100% rename from lib/commands/support.ts rename to lib/commands/support/support.ts diff --git a/lib/commands/tags.ts b/lib/commands/tags/tags.ts similarity index 100% rename from lib/commands/tags.ts rename to lib/commands/tags/tags.ts