Skip to content

Commit be683aa

Browse files
committed
📦 Update dependencies
1 parent cc0038f commit be683aa

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

denops_std/deps.ts

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

6-
export * from "https://deno.land/x/denops_core@v1.0.0/mod.ts#^";
6+
export * from "https://deno.land/x/denops_core@v1.3.0/mod.ts#^";
77

8-
export * from "https://deno.land/x/unknownutil@v1.0.0/mod.ts";
8+
export * from "https://deno.land/x/unknownutil@v1.1.0/mod.ts";

denops_std/deps_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from "https://deno.land/std@0.101.0/testing/asserts.ts#^";
1+
export * from "https://deno.land/std@0.104.0/testing/asserts.ts#^";
22

3-
export * from "https://deno.land/x/denops_core@v1.0.0/test/mod.ts#^";
3+
export * from "https://deno.land/x/denops_core@v1.3.0/test/mod.ts#^";

scripts/gen-function/gen-function.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
difference,
33
intersection,
44
} from "https://deno.land/x/set_operations@v1.0.0/mod.ts";
5-
import * as path from "https://deno.land/std@0.100.0/path/mod.ts";
5+
import * as path from "https://deno.land/std@0.104.0/path/mod.ts";
66
import * as commonManual from "../../denops_std/function/_manual.ts";
77
import * as vimManual from "../../denops_std/function/vim/_manual.ts";
88
import * as nvimManual from "../../denops_std/function/nvim/_manual.ts";

scripts/gen-function/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as io from "https://deno.land/std@0.100.0/io/mod.ts";
1+
import * as io from "https://deno.land/std@0.104.0/io/mod.ts";
22

33
export async function downloadString(url: string): Promise<string> {
44
const textDecoder = new TextDecoder();

scripts/gen-option/gen-option.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
difference,
33
intersection,
44
} from "https://deno.land/x/set_operations@v1.0.0/mod.ts";
5-
import * as path from "https://deno.land/std@0.100.0/path/mod.ts";
5+
import * as path from "https://deno.land/std@0.104.0/path/mod.ts";
66
import * as commonManual from "../../denops_std/function/_manual.ts";
77
import * as vimManual from "../../denops_std/function/vim/_manual.ts";
88
import * as nvimManual from "../../denops_std/function/nvim/_manual.ts";

scripts/gen-option/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as io from "https://deno.land/std@0.100.0/io/mod.ts";
1+
import * as io from "https://deno.land/std@0.104.0/io/mod.ts";
22

33
export async function downloadString(url: string): Promise<string> {
44
const textDecoder = new TextDecoder();

0 commit comments

Comments
 (0)