From 2de9d526e53c09fc7f2d3a6989020b07b653a324 Mon Sep 17 00:00:00 2001 From: "Vipul Gupta (@vipulgupta2048)" Date: Fri, 10 Nov 2023 01:44:27 +0530 Subject: [PATCH] Docs: Move commands to their own directories, away from their categories Signed-off-by: Vipul Gupta (@vipulgupta2048) --- lib/commands/{deploy/build.ts => build/index.ts} | 0 lib/commands/{platform/join.ts => join/index.ts} | 0 lib/commands/{platform/leave.ts => leave/index.ts} | 0 lib/commands/{network/scan.ts => scan/index.ts} | 0 lib/commands/{network/ssh.ts => ssh/index.ts} | 0 lib/commands/{network/tunnel.ts => tunnel/index.ts} | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename lib/commands/{deploy/build.ts => build/index.ts} (100%) rename lib/commands/{platform/join.ts => join/index.ts} (100%) rename lib/commands/{platform/leave.ts => leave/index.ts} (100%) rename lib/commands/{network/scan.ts => scan/index.ts} (100%) rename lib/commands/{network/ssh.ts => ssh/index.ts} (100%) rename lib/commands/{network/tunnel.ts => tunnel/index.ts} (100%) diff --git a/lib/commands/deploy/build.ts b/lib/commands/build/index.ts similarity index 100% rename from lib/commands/deploy/build.ts rename to lib/commands/build/index.ts diff --git a/lib/commands/platform/join.ts b/lib/commands/join/index.ts similarity index 100% rename from lib/commands/platform/join.ts rename to lib/commands/join/index.ts diff --git a/lib/commands/platform/leave.ts b/lib/commands/leave/index.ts similarity index 100% rename from lib/commands/platform/leave.ts rename to lib/commands/leave/index.ts diff --git a/lib/commands/network/scan.ts b/lib/commands/scan/index.ts similarity index 100% rename from lib/commands/network/scan.ts rename to lib/commands/scan/index.ts diff --git a/lib/commands/network/ssh.ts b/lib/commands/ssh/index.ts similarity index 100% rename from lib/commands/network/ssh.ts rename to lib/commands/ssh/index.ts diff --git a/lib/commands/network/tunnel.ts b/lib/commands/tunnel/index.ts similarity index 100% rename from lib/commands/network/tunnel.ts rename to lib/commands/tunnel/index.ts