Skip to content

Commit

Permalink
Merge pull request #321 from vim-denops/automation/update-dependencies
Browse files Browse the repository at this point in the history
📦 update dependencies
  • Loading branch information
lambdalisue authored Feb 24, 2024
2 parents 4969976 + c1abc3c commit 113c492
Show file tree
Hide file tree
Showing 18 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion denops/@denops-private/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
readableStreamFromWorker,
writableStreamFromWorker,
} from "https://deno.land/x/[email protected]/mod.ts";
import { parseArgs } from "https://deno.land/std@0.214.0/cli/parse_args.ts";
import { parseArgs } from "https://deno.land/std@0.217.0/cli/parse_args.ts";

const script = new URL("./worker.ts", import.meta.url);

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/denops.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
Meta,
} from "https://deno.land/x/[email protected]/mod.ts";
import { BatchError } from "https://deno.land/x/[email protected]/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import type { Host as HostOrigin } from "./host.ts";
import type { Service as ServiceOrigin } from "./service.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/denops_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Meta } from "https://deno.land/x/[email protected]/mod.ts";
import {
assertSpyCall,
stub,
} from "https://deno.land/std@0.214.0/testing/mock.ts";
} from "https://deno.land/std@0.217.0/testing/mock.ts";
import { DenopsImpl, Host, Service } from "./denops.ts";
import { unimplemented } from "https://deno.land/x/[email protected]/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/error.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import {
fromErrorObject,
isErrorObject,
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/error_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {
assert,
assertEquals,
assertInstanceOf,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { errorDeserializer, errorSerializer } from "./error.ts";

Deno.test("errorSerializer", async (t) => {
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/host.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Disposable } from "https://deno.land/x/[email protected]/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";

/**
* Host (Vim/Neovim) which is visible from Service
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,4 +1,4 @@
import { ensure, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import {
Client,
Session,
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/host/nvim_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import {
assertEquals,
assertMatch,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import {
assertSpyCall,
stub,
} from "https://deno.land/std@0.214.0/testing/mock.ts";
} from "https://deno.land/std@0.217.0/testing/mock.ts";
import { promiseState } from "https://deno.land/x/[email protected]/mod.ts";
import { usingResource } from "https://deno.land/x/[email protected]/mod.ts";
import { withNeovim } from "../testutil/with.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/host/vim.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ensure, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import {
Client,
Message,
Expand Down
6 changes: 3 additions & 3 deletions denops/@denops-private/host/vim_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import {
assertEquals,
assertMatch,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import {
assertSpyCall,
stub,
} from "https://deno.land/std@0.214.0/testing/mock.ts";
import { delay } from "https://deno.land/std@0.214.0/async/mod.ts";
} from "https://deno.land/std@0.217.0/testing/mock.ts";
import { delay } from "https://deno.land/std@0.217.0/async/mod.ts";
import { promiseState } from "https://deno.land/x/[email protected]/mod.ts";
import { usingResource } from "https://deno.land/x/[email protected]/mod.ts";
import { withVim } from "../testutil/with.ts";
Expand Down
6 changes: 3 additions & 3 deletions denops/@denops-private/host_test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { assertThrows } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { assertThrows } from "https://deno.land/std@0.217.0/assert/mod.ts";
import {
assertSpyCall,
assertSpyCalls,
stub,
} from "https://deno.land/std@0.214.0/testing/mock.ts";
import { AssertError } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
} from "https://deno.land/std@0.217.0/testing/mock.ts";
import { AssertError } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { invoke, Service } from "./host.ts";
import { unimplemented } from "https://deno.land/x/[email protected]/mod.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {
Meta,
} from "https://deno.land/x/[email protected]/mod.ts";
import type { Disposable } from "https://deno.land/x/[email protected]/mod.ts";
import { toFileUrl } from "https://deno.land/std@0.214.0/path/mod.ts";
import { toFileUrl } from "https://deno.land/std@0.217.0/path/mod.ts";
import { toErrorObject } from "https://deno.land/x/[email protected]/mod.ts";
import { DenopsImpl, Host } from "./denops.ts";

Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/service_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import {
assertMatch,
assertRejects,
assertThrows,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import {
assertSpyCall,
assertSpyCalls,
stub,
} from "https://deno.land/std@0.214.0/testing/mock.ts";
} from "https://deno.land/std@0.217.0/testing/mock.ts";
import type { Meta } from "https://deno.land/x/[email protected]/mod.ts";
import type { Host } from "./denops.ts";
import { Service } from "./service.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/testutil/conf.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
fromFileUrl,
resolve,
SEP,
} from "https://deno.land/std@0.214.0/path/mod.ts";
SEPARATOR as SEP,
} from "https://deno.land/std@0.217.0/path/mod.ts";

let conf: Config | undefined;

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/testutil/conf_test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { _internal } from "./conf.ts";

Deno.test({
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/util.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Meta } from "https://deno.land/x/[email protected]/mod.ts";
import { is, Predicate } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { is, Predicate } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";

export const isMeta: Predicate<Meta> = is.ObjectOf({
mode: is.LiteralOneOf(["release", "debug", "test"] as const),
Expand Down
4 changes: 2 additions & 2 deletions denops/@denops-private/version.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {
dirname,
fromFileUrl,
} from "https://deno.land/std@0.214.0/path/mod.ts";
import { parse, SemVer } from "https://deno.land/std@0.214.0/semver/mod.ts";
} from "https://deno.land/std@0.217.0/path/mod.ts";
import { parse, SemVer } from "https://deno.land/std@0.217.0/semver/mod.ts";

const decoder = new TextDecoder();

Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
readableStreamFromWorker,
writableStreamFromWorker,
} from "https://deno.land/x/[email protected]/mod.ts";
import { ensure } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { ensure } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { pop } from "https://deno.land/x/[email protected]/mod.ts";
import { usingResource } from "https://deno.land/x/[email protected]/mod.ts";
import type { HostConstructor } from "./host.ts";
Expand Down

0 comments on commit 113c492

Please sign in to comment.