8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
|
import { output } from "@gnome/exec"
|
||
|
|
||
|
const printLines = (resp: any) => console.log(resp.lines().join("\n"))
|
||
|
|
||
|
await output(`deno`,
|
||
|
["run", "-A", "npm:ts-to-zod", "lib/config/types.ts", "lib/config/types.zod.ts"]
|
||
|
).then(printLines)
|