Skip to content

Commit

Permalink
Merge pull request #200 from vim-denops/automation/update-dependencies
Browse files Browse the repository at this point in the history
📦 Update Deno dependencies
  • Loading branch information
Shougo authored Dec 1, 2022
2 parents 3c3a0f9 + 2cb3873 commit 30286cf
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions denops/@denops-private/cli.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parse } from "https://deno.land/std@0.149.0/flags/mod.ts";
import { using } from "https://deno.land/x/disposable@v1.0.2/mod.ts#^";
import { parse } from "https://deno.land/std@0.166.0/flags/mod.ts";
import { using } from "https://deno.land/x/disposable@v1.1.0/mod.ts#^";
import { Service } from "./service.ts";
import { Vim } from "./host/vim.ts";
import { Neovim } from "./host/nvim.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/host/base.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Disposable } from "https://deno.land/x/disposable@v1.0.2/mod.ts#^";
import type { Disposable } from "https://deno.land/x/disposable@v1.1.0/mod.ts#^";
import { Invoker } from "./invoker.ts";

/**
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/host/nvim.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertArray,
assertString,
} from "https://deno.land/x/unknownutil@v2.0.0/mod.ts#^";
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts#^";
import { Session } from "https://deno.land/x/[email protected]/mod.ts#^";
import { responseTimeout } from "../defs.ts";
import { Invoker, isInvokerMethod } from "./invoker.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
isArray,
isString,
isUndefined,
} from "https://deno.land/x/unknownutil@v2.0.0/mod.ts#^";
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts#^";
import {
Dispatcher as SessionDispatcher,
Session,
Expand All @@ -16,7 +16,7 @@ import {
WorkerReader,
WorkerWriter,
} from "https://deno.land/x/[email protected]/mod.ts#^";
import { Disposable } from "https://deno.land/x/disposable@v1.0.2/mod.ts#^";
import { Disposable } from "https://deno.land/x/disposable@v1.1.0/mod.ts#^";
import { responseTimeout } from "./defs.ts";
import { Host } from "./host/base.ts";
import { Invoker, RegisterOptions, ReloadOptions } from "./host/invoker.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/tee.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Buffer } from "https://deno.land/std@0.149.0/io/mod.ts";
import { writeAll } from "https://deno.land/std@0.149.0/streams/mod.ts";
import { Buffer } from "https://deno.land/std@0.166.0/io/mod.ts";
import { writeAll } from "https://deno.land/std@0.166.0/streams/mod.ts";

type Reader = Deno.Reader;
type ReadCloser = Reader & Deno.Closer;
Expand Down
6 changes: 3 additions & 3 deletions denops/@denops-private/tee_test.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import {
assert,
assertEquals,
} from "https://deno.land/std@0.149.0/testing/asserts.ts";
} from "https://deno.land/std@0.166.0/testing/asserts.ts";
import {
readAll,
writeAll,
} from "https://deno.land/std@0.149.0/streams/mod.ts";
import { Buffer } from "https://deno.land/std@0.149.0/io/mod.ts";
} from "https://deno.land/std@0.166.0/streams/mod.ts";
import { Buffer } from "https://deno.land/std@0.166.0/io/mod.ts";
import { tee } from "./tee.ts";

Deno.test("tee", async (t) => {
Expand Down
6 changes: 3 additions & 3 deletions denops/@denops-private/worker/script.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { toFileUrl } from "https://deno.land/std@0.149.0/path/mod.ts";
import { toFileUrl } from "https://deno.land/std@0.166.0/path/mod.ts";
import {
assertObject,
assertString,
isObject,
isString,
} from "https://deno.land/x/unknownutil@v2.0.0/mod.ts#^";
} from "https://deno.land/x/unknownutil@v2.1.0/mod.ts#^";
import { Session } from "https://deno.land/x/[email protected]/mod.ts#^";
import { using } from "https://deno.land/x/disposable@v1.0.2/mod.ts#^";
import { using } from "https://deno.land/x/disposable@v1.1.0/mod.ts#^";
import {
WorkerReader,
WorkerWriter,
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops/test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as path from "https://deno.land/std@0.149.0/path/mod.ts";
import * as path from "https://deno.land/std@0.166.0/path/mod.ts";
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.149.0/testing/asserts.ts";
} from "https://deno.land/std@0.166.0/testing/asserts.ts";
import { test } from "./test/tester.ts";
import { BatchError } from "./mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops/test/bypass/cli.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { copy } from "https://deno.land/std@0.149.0/streams/conversion.ts";
import { copy } from "https://deno.land/std@0.166.0/streams/conversion.ts";
import {
WorkerReader,
WorkerWriter,
Expand Down
6 changes: 3 additions & 3 deletions denops/@denops/test/tester.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as path from "https://deno.land/std@0.149.0/path/mod.ts";
import * as path from "https://deno.land/std@0.166.0/path/mod.ts";
import { Session } from "https://deno.land/x/[email protected]/mod.ts#^";
import { using } from "https://deno.land/x/disposable@v1.0.2/mod.ts#^";
import { deadline } from "https://deno.land/std@0.149.0/async/mod.ts";
import { using } from "https://deno.land/x/disposable@v1.1.0/mod.ts#^";
import { deadline } from "https://deno.land/std@0.166.0/async/mod.ts";
import type { Denops, Meta } from "../mod.ts";
import { DenopsImpl } from "../impl.ts";
import { DENOPS_TEST_NVIM, DENOPS_TEST_VIM, run } from "./runner.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops/test/tester_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.149.0/testing/asserts.ts";
import { assertEquals } from "https://deno.land/std@0.166.0/testing/asserts.ts";
import { test } from "./tester.ts";

test(
Expand Down

0 comments on commit 30286cf

Please sign in to comment.