this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 2e4862eccfff02e76c7a64a7681a914310e5fbeb 9 lines 298 B view raw
1import { Command } from "@cliffy/command"; 2import { startDevServer } from "../server/dev.ts"; 3 4export const dev = new Command() 5 .arguments("<source:string>") 6 .description("Serve, watch, and rebuild") 7 .action(async (_opts: unknown, source: string) => { 8 await startDevServer(source); 9 });