From dd82780203ec660c4d4bf238c7f380044a25036c Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Sun, 28 Jan 2024 09:36:47 +0100 Subject: [PATCH] Switch back to online worker runtime again --- plugos/compile.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugos/compile.ts b/plugos/compile.ts index 41ff3881..4d5f8f9e 100644 --- a/plugos/compile.ts +++ b/plugos/compile.ts @@ -4,9 +4,9 @@ import { bundleAssets } from "./asset_bundle/builder.ts"; import { Manifest } from "./types.ts"; import { version } from "../version.ts"; -const workerRuntimeUrl = new URL("./worker_runtime.ts", import.meta.url); -// const workerRuntimeUrl = -// `https://deno.land/x/silverbullet@${version}/plugos/worker_runtime.ts`; +// const workerRuntimeUrl = new URL("./worker_runtime.ts", import.meta.url); +const workerRuntimeUrl = + `https://deno.land/x/silverbullet@${version}/plugos/worker_runtime.ts`; export type CompileOptions = { debug?: boolean;