+8
example/hono/deno.lock
+8
example/hono/deno.lock
···
16
16
"jsr:@std/http"
17
17
]
18
18
},
19
+
"@smallweb/sandbox@0.1.1": {
20
+
"integrity": "e90d4f3ca3abbc5b765e29ab90f12cc4e6c8754ec4311bc296ccf6240053f3e6",
21
+
"dependencies": [
22
+
"jsr:@std/encoding",
23
+
"jsr:@std/html",
24
+
"jsr:@std/http"
25
+
]
26
+
},
19
27
"@std/encoding@1.0.8": {
20
28
"integrity": "a6c8f3f933ab1bed66244f435d1dc0fd23a888e07195532122ddc3d5f8f0e6b4"
21
29
},
+1
-1
internal/worker/worker.go
+1
-1
internal/worker/worker.go
+1
-1
sandbox/deno.json
+1
-1
sandbox/deno.json
+1
-3
sandbox/mod.ts
+1
-3
sandbox/mod.ts
···
160
160
Deno.exit(1);
161
161
}
162
162
163
-
const data = decodeBase64(payload.input)
164
-
const blob = new Blob([data]);
165
-
await handler.run(payload.args, blob.stream());
163
+
await handler.run(payload.args);
166
164
} else if (payload.command === "email") {
167
165
const mod = await import(payload.entrypoint);
168
166
if (!mod.default || typeof mod.default !== "object") {