Skip to content

Commit 363b3fd

Browse files
authored
Merge pull request #141 from vim-denops/automation/update-dependencies
📦 Update Deno dependencies
2 parents 9bf54bc + 2390edd commit 363b3fd

31 files changed

+34
-34
lines changed

denops_std/anonymous/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.150.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.151.0/testing/asserts.ts";
55
import { test } from "https://deno.land/x/denops_core@v3.1.0/test/mod.ts";
66
import * as anonymous from "./mod.ts";
77

denops_std/argument/flags_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { parseFlags } from "./flags.ts";
33

44
Deno.test("parseFlags", () => {

denops_std/argument/mod_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { parse } from "./mod.ts";
33

44
Deno.test("parse", () => {

denops_std/argument/opts_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { parseOpts } from "./opts.ts";
33

44
Deno.test("parseOpts", () => {

denops_std/autocmd/common_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { test } from "https://deno.land/x/denops_core@v3.1.0/test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";

denops_std/autocmd/group_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { test } from "https://deno.land/x/denops_core@v3.1.0/test/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";

denops_std/batch/batch_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { test } from "https://deno.land/x/denops_core@v3.1.0/test/mod.ts";
33
import { batch, BatchHelper } from "./batch.ts";
44

denops_std/batch/gather_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.150.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.151.0/testing/asserts.ts";
55
import { test } from "https://deno.land/x/denops_core@v3.1.0/test/mod.ts";
66
import { gather, GatherHelper } from "./gather.ts";
77

denops_std/buffer/buffer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { test } from "../test/mod.ts";
33
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
44
import * as fn from "../function/mod.ts";

denops_std/buffer/fileencoding_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assertEquals } from "https://deno.land/std@0.150.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.151.0/testing/asserts.ts";
22
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
33
import { tryDecode } from "./fileencoding.ts";
44

0 commit comments

Comments
 (0)