Skip to content

Commit 9b18cec

Browse files
committed
📦 Upgrade dependencies
1 parent f7cadb7 commit 9b18cec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+105
-105
lines changed

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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.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.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import { parseOpts } from "./opts.ts";
33

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

denops_std/autocmd/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
1+
import { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import {
33
AutocmdEvent,
44
DefineOptions,

denops_std/autocmd/common_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";
55

denops_std/autocmd/group.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import { execute } from "../helper/execute.ts";
33
import { AutocmdEvent, DefineOptions, RemoveOptions } from "./types.ts";
44
import { buildDefineExpr, buildRemoveExpr } from "./utils.ts";

denops_std/autocmd/group_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
2+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";
55

denops_std/batch/batch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
Denops,
44
Dispatcher,
55
Meta,
6-
} from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
6+
} from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
77

88
type Redraw = undefined | boolean;
99

denops_std/batch/batch_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import {
33
assertSpyCall,
44
assertSpyCalls,
55
spy,
6-
} from "https://deno.land/std@0.186.0/testing/mock.ts";
7-
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
6+
} from "https://deno.land/std@0.188.0/testing/mock.ts";
7+
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
88
import { batch, BatchHelper } from "./batch.ts";
99

1010
test({

denops_std/batch/collect.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type {
33
Denops,
44
Dispatcher,
55
Meta,
6-
} from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
6+
} from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
77

88
type VimVoid<T> = T extends void ? 0 : T;
99

0 commit comments

Comments
 (0)