import { EOL } from "os" import { Project } from "../../../project/project" import { Log } from "../../../util/log" import { cmd } from "../cmd" export const ScrapCommand = cmd({ command: "scrap", builder: (yargs) => yargs, async handler() { const timer = Log.Default.time("scrap") const list = await Project.list() process.stdout.write(JSON.stringify(list, null, 2) + EOL) timer.stop() }, })