From 2ea415a20ef76c214bb5d3b3d6a134c4e510693d Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Wed, 26 Feb 2025 00:53:55 -0500 Subject: [PATCH] fs is now named rfwfs rhpidfyre's web file system --- src/rt/elements/prompt.ts | 2 +- src/rt/shell/command/builtin/cd.ts | 2 +- src/rt/shell/command/builtin/ls.ts | 4 ++-- src/rt/shell/command/builtin/pwd.ts | 2 +- src/rt/shell/{fs => rfwfs}/core.ts | 0 src/rt/shell/{fs => rfwfs}/index.ts | 0 src/rt/shell/{fs => rfwfs}/library.ts | 0 src/rt/shell/{fs => rfwfs}/tree.ts | 0 8 files changed, 5 insertions(+), 5 deletions(-) rename src/rt/shell/{fs => rfwfs}/core.ts (100%) rename src/rt/shell/{fs => rfwfs}/index.ts (100%) rename src/rt/shell/{fs => rfwfs}/library.ts (100%) rename src/rt/shell/{fs => rfwfs}/tree.ts (100%) diff --git a/src/rt/elements/prompt.ts b/src/rt/elements/prompt.ts index 828879d..bf2d10b 100644 --- a/src/rt/elements/prompt.ts +++ b/src/rt/elements/prompt.ts @@ -1,5 +1,5 @@ import { cyan, green } from "../shell/color" -import { get_working_dir_name } from "../shell/fs/library" +import { get_working_dir_name } from "../shell/rfwfs/library" import create from "./create" diff --git a/src/rt/shell/command/builtin/cd.ts b/src/rt/shell/command/builtin/cd.ts index 362291b..98223fd 100644 --- a/src/rt/shell/command/builtin/cd.ts +++ b/src/rt/shell/command/builtin/cd.ts @@ -1,4 +1,4 @@ -import { set_working_dir, SetDirStatus } from "../../fs/library" +import { set_working_dir, SetDirStatus } from "../../rfwfs/library" import type { Args, Term } from "../list" import stdout from "../../../elements/stdout" diff --git a/src/rt/shell/command/builtin/ls.ts b/src/rt/shell/command/builtin/ls.ts index b2438f6..64c7fe5 100644 --- a/src/rt/shell/command/builtin/ls.ts +++ b/src/rt/shell/command/builtin/ls.ts @@ -1,7 +1,7 @@ import type { Args, Term } from "../list"; import { blue } from "../../color"; -import { get_working_dir_entries } from "../../fs/library"; -import { EntryType, FsEntry } from "../../fs/core"; +import { get_working_dir_entries } from "../../rfwfs/library"; +import { EntryType, FsEntry } from "../../rfwfs/core"; import stdout, { stdout_horizontal_elements } from "../../../elements/stdout"; import create from "../../../elements/create"; diff --git a/src/rt/shell/command/builtin/pwd.ts b/src/rt/shell/command/builtin/pwd.ts index b686d1e..20f1f87 100644 --- a/src/rt/shell/command/builtin/pwd.ts +++ b/src/rt/shell/command/builtin/pwd.ts @@ -1,4 +1,4 @@ -import { get_working_dir_name_full } from "../../fs/library"; +import { get_working_dir_name_full } from "../../rfwfs/library"; import type { Args, Term } from "../list"; import stdout from "../../../elements/stdout"; diff --git a/src/rt/shell/fs/core.ts b/src/rt/shell/rfwfs/core.ts similarity index 100% rename from src/rt/shell/fs/core.ts rename to src/rt/shell/rfwfs/core.ts diff --git a/src/rt/shell/fs/index.ts b/src/rt/shell/rfwfs/index.ts similarity index 100% rename from src/rt/shell/fs/index.ts rename to src/rt/shell/rfwfs/index.ts diff --git a/src/rt/shell/fs/library.ts b/src/rt/shell/rfwfs/library.ts similarity index 100% rename from src/rt/shell/fs/library.ts rename to src/rt/shell/rfwfs/library.ts diff --git a/src/rt/shell/fs/tree.ts b/src/rt/shell/rfwfs/tree.ts similarity index 100% rename from src/rt/shell/fs/tree.ts rename to src/rt/shell/rfwfs/tree.ts