Files
opencode/packages/opencode/src/cli/cmd/scrap.ts
Dax Raad 9b2b610920 sync
2025-06-11 18:45:18 -04:00

15 lines
437 B
TypeScript

import { App } from "../../app/app"
import { VERSION } from "../version"
import { cmd } from "./cmd"
export const ScrapCommand = cmd({
command: "scrap <file>",
builder: (yargs) =>
yargs.positional("file", { type: "string", demandOption: true }),
async handler() {
await App.provide({ cwd: process.cwd(), version: VERSION }, async (app) => {
Bun.resolveSync("typescript/lib/tsserver.js", app.path.cwd)
})
},
})