We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0e067c commit 0918891Copy full SHA for 0918891
src/core/deno/monkey-patch.ts
@@ -7,6 +7,7 @@
7
import { debug } from "../../deno_ral/log.ts";
8
import { normalizePath } from "../path.ts";
9
import { copy } from "io/copy";
10
+import { writeAll } from "io/write-all";
11
12
// Windows UNC paths can be mishandled by realPathSync
13
// (see https://github.com/quarto-dev/quarto-vscode/issues/67)
@@ -19,6 +20,8 @@ Deno.realPathSync = normalizePath;
19
20
//
21
// deno-lint-ignore no-explicit-any
22
(Deno as any).copy = copy;
23
+// deno-lint-ignore no-explicit-any
24
+(Deno as any).writeAll = writeAll;
25
26
// 2023-02-14: We're seeing a rare failure in Deno.makeTempFile{,Sync} with FileExists, so we're going to try
27
// a few times to create the file. If it fails, we'll log the error and try again.
0 commit comments