fs.ts -> core.ts, fn.ts -> library.ts
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { cyan, green } from "../shell/color"
|
||||
import { get_working_dir_name } from "../shell/fs/fn"
|
||||
import { get_working_dir_name } from "../shell/fs/library"
|
||||
|
||||
import create from "./create"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { set_working_dir, SetDirStatus } from "../../fs/fn"
|
||||
import { set_working_dir, SetDirStatus } from "../../fs/library"
|
||||
import type { Args, Term } from "../list"
|
||||
|
||||
import stdout from "../../../elements/stdout"
|
||||
|
@ -1,7 +1,7 @@
|
||||
import type { Args, Term } from "../list";
|
||||
import { blue } from "../../color";
|
||||
import { get_working_dir_entries } from "../../fs/fn";
|
||||
import { EntryType, FsEntry } from "../../fs/fs";
|
||||
import { get_working_dir_entries } from "../../fs/library";
|
||||
import { EntryType, FsEntry } from "../../fs/core";
|
||||
|
||||
import stdout, { stdout_horizontal_elements } from "../../../elements/stdout";
|
||||
import create from "../../../elements/create";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { get_working_dir_name_full } from "../../fs/fn";
|
||||
import { get_working_dir_name_full } from "../../fs/library";
|
||||
import type { Args, Term } from "../list";
|
||||
|
||||
import stdout from "../../../elements/stdout";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { EntryType, fs, type FsDirectory, type FsEntry } from "./fs"
|
||||
import { EntryType, fs, type FsDirectory, type FsEntry } from "./core"
|
||||
|
||||
let working_dir = ["/", "home", "user"]
|
||||
|
Reference in New Issue
Block a user