SilverBullet pivot to become an offline-first PWA (#403)

This commit is contained in:
Zef Hemel
2023-05-23 20:53:53 +02:00
committed by GitHub
parent b256269897
commit 5f484bed57
389 changed files with 4484 additions and 291129 deletions
+7 -5
View File
@@ -1,25 +1,27 @@
import { bundleRun } from "../plugos/bin/plugos-bundle.ts";
import { esbuild } from "../plugos/compile.ts";
import { compileManifests } from "../plugos/compile.ts";
import { esbuild } from "../plugos/deps.ts";
export async function plugCompileCommand(
{ watch, dist, debug, info, importmap }: {
{ watch, dist, debug, info, importmap, runtimeUrl }: {
watch: boolean;
dist: string;
debug: boolean;
info: boolean;
importmap?: string;
runtimeUrl?: string;
},
...manifestPaths: string[]
) {
await bundleRun(
await compileManifests(
manifestPaths,
dist,
watch,
{
debug: debug,
info: info,
runtimeUrl,
importMap: importmap
? new URL(importmap, `file://${Deno.cwd()}/`)
? new URL(importmap, `file://${Deno.cwd()}/`).toString()
: undefined,
},
);