Skip to content

Commit 632235a

Browse files
committed
📦 Downgrade and fix version of std module
https://github.com/denoland/deno_std/releases/tag/0.107.0 contains a breaking change which drop support of Deno 1.11.0
1 parent 0402583 commit 632235a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

denops_std/deps.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
export * as fs from "https://deno.land/std@0.107.0/fs/mod.ts#^";
2-
export * as hash from "https://deno.land/std@0.107.0/hash/mod.ts#^";
3-
export * as path from "https://deno.land/std@0.107.0/path/mod.ts#^";
4-
export { deferred } from "https://deno.land/std@0.107.0/async/mod.ts#^";
1+
export * as fs from "https://deno.land/std@0.106.0/fs/mod.ts#=";
2+
export * as hash from "https://deno.land/std@0.106.0/hash/mod.ts#=";
3+
export * as path from "https://deno.land/std@0.106.0/path/mod.ts#=";
4+
export { deferred } from "https://deno.land/std@0.106.0/async/mod.ts#=";
55

66
export * from "https://deno.land/x/denops_core@v1.10.1/mod.ts#^";
77

denops_std/deps_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from "https://deno.land/std@0.107.0/testing/asserts.ts#^";
1+
export * from "https://deno.land/std@0.106.0/testing/asserts.ts#=";
22

33
export * from "https://deno.land/x/denops_core@v1.10.1/test/mod.ts#^";

0 commit comments

Comments
 (0)