31 lines
655 B
TypeScript
31 lines
655 B
TypeScript
import { compileManifests } from "../plugos/compile.ts";
|
|
import { esbuild } from "../plugos/deps.ts";
|
|
|
|
export async function plugCompileCommand(
|
|
{ watch, dist, debug, info, importmap, runtimeUrl }: {
|
|
watch: boolean;
|
|
dist: string;
|
|
debug: boolean;
|
|
info: boolean;
|
|
importmap?: string;
|
|
runtimeUrl?: string;
|
|
},
|
|
...manifestPaths: string[]
|
|
) {
|
|
await compileManifests(
|
|
manifestPaths,
|
|
dist,
|
|
watch,
|
|
{
|
|
debug: debug,
|
|
info: info,
|
|
runtimeUrl,
|
|
importMap: importmap
|
|
? new URL(importmap, `file://${Deno.cwd()}/`).toString()
|
|
: undefined,
|
|
},
|
|
);
|
|
esbuild.stop();
|
|
Deno.exit(0);
|
|
}
|