Skip to content

Commit d79bc60

Browse files
authored
Merge pull request #174 from vim-denops/automation/update-dependencies
📦 Update Deno dependencies
2 parents a930596 + 2814a0e commit d79bc60

36 files changed

+59
-59
lines changed

denops_std/anonymous/mod_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import * as anonymous from "./mod.ts";
77

88
test({

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

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

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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import { globals } from "../variable/mod.ts";
44
import { define, emit, emitAll, list, remove } from "./common.ts";
55

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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import { globals } from "../variable/mod.ts";
44
import { group } from "./group.ts";
55

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.171.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22
import {
33
assertSpyCall,
44
assertSpyCalls,
55
spy,
6-
} from "https://deno.land/std@0.171.0/testing/mock.ts";
7-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
88
import { batch, BatchHelper } from "./batch.ts";
99

1010
test({

denops_std/batch/gather_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { gather, GatherHelper } from "./gather.ts";
77

88
test({

denops_std/buffer/buffer_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
77
import * as fn from "../function/mod.ts";
88
import {

denops_std/buffer/decoration_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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import * as fn from "../function/mod.ts";
44
import * as vimFn from "../function/vim/mod.ts";
55
import * as nvimFn from "../function/nvim/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.171.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.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

denops_std/buffer/fileformat_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.171.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22
import { FileFormat, findFileFormat, splitText } from "./fileformat.ts";
33

44
Deno.test("splitText", async (t) => {

denops_std/bufname/bufname_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertThrows,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import * as path from "https://deno.land/std@0.171.0/path/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import * as path from "https://deno.land/std@0.186.0/path/mod.ts";
66
import { format, parse } from "./bufname.ts";
77

88
Deno.test("format throws exception when 'scheme' contains unusable characters", () => {

denops_std/bufname/utils_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.171.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22
import { decode, encode } from "./utils.ts";
33

44
Deno.test("encode does nothing on alphabet characters", () => {

denops_std/function/cursor_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { assertEquals } from "https://deno.land/std@0.171.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.0/mod.ts";
3-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
3+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
44
import * as cursor from "./cursor.ts";
55
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";
66

denops_std/function/getreginfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
2-
import { lt } from "https://deno.land/std@0.171.0/semver/mod.ts";
2+
import { lt } from "https://deno.land/std@0.186.0/semver/mod.ts";
33
import { execute } from "../helper/mod.ts";
44
import { generateUniqueString } from "../util.ts";
55

denops_std/function/input_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { input, inputlist, inputsecret } from "./input.ts";
77
import * as autocmd from "../autocmd/mod.ts";
88
import { execute } from "../helper/execute.ts";

denops_std/function/various_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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import * as various from "./various.ts";
44

55
test({

denops_std/helper/echo_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
1+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
22
import { echo, echoerr } from "./echo.ts";
33

44
test({

denops_std/helper/execute_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import {
22
assertEquals,
33
assertInstanceOf,
44
assertRejects,
5-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
6-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
5+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
6+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
77
import { execute } from "./execute.ts";
88

99
test({

denops_std/helper/input_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { input } from "./input.ts";
77
import { execute } from "./execute.ts";
88
import * as autocmd from "../autocmd/mod.ts";

denops_std/helper/load.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Denops } from "https://deno.land/x/denops_core@v4.0.0/mod.ts";
2-
import * as fs from "https://deno.land/std@0.171.0/fs/mod.ts";
3-
import * as path from "https://deno.land/std@0.171.0/path/mod.ts";
2+
import * as fs from "https://deno.land/std@0.186.0/fs/mod.ts";
3+
import * as path from "https://deno.land/std@0.186.0/path/mod.ts";
44
import { execute } from "./execute.ts";
55

66
const loaded = new Set<URL>();

denops_std/helper/load_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { load } from "./load.ts";
77

88
const loadScriptUrlBase =

denops_std/lambda/mod_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import * as lambda from "./mod.ts";
77

88
test({

denops_std/mapping/mod_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { Mapping, Mode } from "./types.ts";
77
import * as mapping from "./mod.ts";
88

denops_std/mapping/parser_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
assertThrows,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
55
import { Mapping } from "./types.ts";
66
import { parse } from "./parser.ts";
77

denops_std/variable/environment_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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import { environment } from "./environment.ts";
44

55
test({

denops_std/variable/option_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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import { globalOptions, localOptions, options } from "./option.ts";
44

55
test({

denops_std/variable/register_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import {
22
assertEquals,
33
assertRejects,
4-
} from "https://deno.land/std@0.171.0/testing/asserts.ts";
5-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
4+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
5+
import { test } from "https://deno.land/x/denops_test@v1.1.0/mod.ts";
66
import { register } from "./register.ts";
77

88
test({

denops_std/variable/variable_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.171.0/testing/asserts.ts";
2-
import { test } from "https://deno.land/x/denops_test@v1.0.1/mod.ts";
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";
33
import { buffers, globals, tabpages, vim, windows } from "./variable.ts";
44

55
test({

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.1.0/mod.ts";
5-
import * as path from "https://deno.land/std@0.183.0/path/mod.ts";
5+
import * as path from "https://deno.land/std@0.186.0/path/mod.ts";
66
import { parse } from "./parse.ts";
77
import { format } from "./format.ts";
88
import { DOCS_OVERRIDES } from "./override.ts";

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.1.0/mod.ts";
5-
import * as path from "https://deno.land/std@0.183.0/path/mod.ts";
5+
import * as path from "https://deno.land/std@0.186.0/path/mod.ts";
66
import { parse } from "./parse.ts";
77
import { format } from "./format.ts";
88
import { DOCS_OVERRIDES } from "./override.ts";

scripts/markdown_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.183.0/testing/asserts.ts";
1+
import { assertEquals } from "https://deno.land/std@0.186.0/testing/asserts.ts";
22

33
import { createMarkdownFromHelp } from "./markdown.ts";
44

scripts/transform.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
fromFileUrl,
33
toFileUrl,
4-
} from "https://deno.land/std@0.183.0/path/mod.ts";
4+
} from "https://deno.land/std@0.186.0/path/mod.ts";
55
import { intersection } from "https://deno.land/x/set_operations@v1.1.0/mod.ts";
66

77
interface ModuleInformation {

scripts/utils.ts

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

33
/**
44
* Downloads a text file and returns the contents.

scripts/utils_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {
33
assertInstanceOf,
44
assertRejects,
55
assertThrows,
6-
} from "https://deno.land/std@0.183.0/testing/asserts.ts";
7-
import { stub } from "https://deno.land/std@0.183.0/testing/mock.ts";
6+
} from "https://deno.land/std@0.186.0/testing/asserts.ts";
7+
import { stub } from "https://deno.land/std@0.186.0/testing/mock.ts";
88

99
import {
1010
Counter,

0 commit comments

Comments
 (0)