| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import { File } from "../../../file"
- import { bootstrap } from "../../bootstrap"
- import { cmd } from "../cmd"
- const FileReadCommand = cmd({
- command: "read <path>",
- builder: (yargs) =>
- yargs.positional("path", {
- type: "string",
- demandOption: true,
- description: "File path to read",
- }),
- async handler(args) {
- await bootstrap(process.cwd(), async () => {
- const content = await File.read(args.path)
- console.log(content)
- })
- },
- })
- const FileStatusCommand = cmd({
- command: "status",
- builder: (yargs) => yargs,
- async handler() {
- await bootstrap(process.cwd(), async () => {
- const status = await File.status()
- console.log(JSON.stringify(status, null, 2))
- })
- },
- })
- const FileListCommand = cmd({
- command: "list <path>",
- builder: (yargs) =>
- yargs.positional("path", {
- type: "string",
- demandOption: true,
- description: "File path to list",
- }),
- async handler(args) {
- await bootstrap(process.cwd(), async () => {
- const files = await File.list(args.path)
- console.log(JSON.stringify(files, null, 2))
- })
- },
- })
- export const FileCommand = cmd({
- command: "file",
- builder: (yargs) =>
- yargs.command(FileReadCommand).command(FileStatusCommand).command(FileListCommand).demandCommand(),
- async handler() {},
- })
|