From 5f3bc652fcfd5b7ac6d5edad17810e91191d2621 Mon Sep 17 00:00:00 2001 From: Daniel Dye Date: Mon, 11 Nov 2024 11:54:44 +0000 Subject: [PATCH] Move CLI code into cli directory --- {commands => cli/commands}/add.ts | 0 {commands => cli/commands}/global.test.ts | 0 {commands => cli/commands}/global.ts | 0 {commands => cli/commands}/local.ts | 0 {commands => cli/commands}/new.ts | 0 {commands => cli/commands}/register.ts | 0 {commands => cli/commands}/setup.ts | 0 {commands => cli/commands}/upgrade.ts | 0 {commands => cli/commands}/versions.ts | 0 constants.ts => cli/constants.ts | 0 deno.json => cli/deno.json | 0 deno.lock => cli/deno.lock | 0 main.ts => cli/main.ts | 0 {utils => cli/utils}/read-first-line.ts | 0 {utils => cli/utils}/read-version.ts | 0 15 files changed, 0 insertions(+), 0 deletions(-) rename {commands => cli/commands}/add.ts (100%) rename {commands => cli/commands}/global.test.ts (100%) rename {commands => cli/commands}/global.ts (100%) rename {commands => cli/commands}/local.ts (100%) rename {commands => cli/commands}/new.ts (100%) rename {commands => cli/commands}/register.ts (100%) rename {commands => cli/commands}/setup.ts (100%) rename {commands => cli/commands}/upgrade.ts (100%) rename {commands => cli/commands}/versions.ts (100%) rename constants.ts => cli/constants.ts (100%) rename deno.json => cli/deno.json (100%) rename deno.lock => cli/deno.lock (100%) rename main.ts => cli/main.ts (100%) rename {utils => cli/utils}/read-first-line.ts (100%) rename {utils => cli/utils}/read-version.ts (100%) diff --git a/commands/add.ts b/cli/commands/add.ts similarity index 100% rename from commands/add.ts rename to cli/commands/add.ts diff --git a/commands/global.test.ts b/cli/commands/global.test.ts similarity index 100% rename from commands/global.test.ts rename to cli/commands/global.test.ts diff --git a/commands/global.ts b/cli/commands/global.ts similarity index 100% rename from commands/global.ts rename to cli/commands/global.ts diff --git a/commands/local.ts b/cli/commands/local.ts similarity index 100% rename from commands/local.ts rename to cli/commands/local.ts diff --git a/commands/new.ts b/cli/commands/new.ts similarity index 100% rename from commands/new.ts rename to cli/commands/new.ts diff --git a/commands/register.ts b/cli/commands/register.ts similarity index 100% rename from commands/register.ts rename to cli/commands/register.ts diff --git a/commands/setup.ts b/cli/commands/setup.ts similarity index 100% rename from commands/setup.ts rename to cli/commands/setup.ts diff --git a/commands/upgrade.ts b/cli/commands/upgrade.ts similarity index 100% rename from commands/upgrade.ts rename to cli/commands/upgrade.ts diff --git a/commands/versions.ts b/cli/commands/versions.ts similarity index 100% rename from commands/versions.ts rename to cli/commands/versions.ts diff --git a/constants.ts b/cli/constants.ts similarity index 100% rename from constants.ts rename to cli/constants.ts diff --git a/deno.json b/cli/deno.json similarity index 100% rename from deno.json rename to cli/deno.json diff --git a/deno.lock b/cli/deno.lock similarity index 100% rename from deno.lock rename to cli/deno.lock diff --git a/main.ts b/cli/main.ts similarity index 100% rename from main.ts rename to cli/main.ts diff --git a/utils/read-first-line.ts b/cli/utils/read-first-line.ts similarity index 100% rename from utils/read-first-line.ts rename to cli/utils/read-first-line.ts diff --git a/utils/read-version.ts b/cli/utils/read-version.ts similarity index 100% rename from utils/read-version.ts rename to cli/utils/read-version.ts