mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
fix: add --unstable-http arg to deno (#3186)
This commit is contained in:
@@ -123,6 +123,7 @@ pub async fn generate_deno_lock(
|
||||
"--unstable-ffi",
|
||||
"--unstable-fs",
|
||||
"--unstable-worker-options",
|
||||
"--unstable-http",
|
||||
"--lock=lock.json",
|
||||
"--lock-write",
|
||||
"--import-map",
|
||||
@@ -291,6 +292,7 @@ try {{
|
||||
args.push("--unstable-ffi");
|
||||
args.push("--unstable-fs");
|
||||
args.push("--unstable-worker-options");
|
||||
args.push("--unstable-http");
|
||||
if let Some(reqs) = requirements_o {
|
||||
if !reqs.is_empty() {
|
||||
let _ = write_file(job_dir, "lock.json", &reqs).await?;
|
||||
@@ -519,6 +521,7 @@ for await (const chunk of Deno.stdin.readable) {{
|
||||
"--unstable-ffi",
|
||||
"--unstable-fs",
|
||||
"--unstable-worker-options",
|
||||
"--unstable-http",
|
||||
"-A",
|
||||
&format!("{job_dir}/wrapper.ts"),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user