Move plugos-bundle into silverbullet plug:build command
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
import { bundleRun } from "../plugos/bin/plugos-bundle.ts";
|
||||
import { esbuild } from "../plugos/compile.ts";
|
||||
|
||||
export async function plugBundleCommand(
|
||||
{ watch, dist, debug, info, importmap }: {
|
||||
watch: boolean;
|
||||
dist: string;
|
||||
debug: boolean;
|
||||
info: boolean;
|
||||
importmap?: string;
|
||||
},
|
||||
...manifestPaths: string[]
|
||||
) {
|
||||
await bundleRun(
|
||||
manifestPaths,
|
||||
dist,
|
||||
watch,
|
||||
{
|
||||
debug: debug,
|
||||
info: info,
|
||||
importMap: importmap
|
||||
? new URL(importmap, `file://${Deno.cwd()}/`)
|
||||
: undefined,
|
||||
},
|
||||
);
|
||||
esbuild.stop();
|
||||
}
|
||||
Reference in New Issue
Block a user