Skip to content

Commit 1184fa1

Browse files
committed
revert removal of deno dep
Signed-off-by: duart38 <[email protected]>
1 parent a464ab1 commit 1184fa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Thread.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ onmessage = async function(e) {
9797
if (file) {
9898
this.debug(
9999
"importing file: ",
100-
"file://" + fqfn
100+
import.meta.resolve("file://" + Deno.realPathSync(fqfn)),
101101
);
102-
const x = await import("file://" + fqfn);
102+
const x = await import("file://" + Deno.realPathSync(fqfn));
103103
this.debug(
104104
"file imported, inlining the following: ",
105105
Object.keys(x).join(","),

0 commit comments

Comments
 (0)