Skip to content

Commit

Permalink
📦 Upgrade unknownutil to v3.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed May 14, 2024
1 parent 74116b9 commit 639ed41
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
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.16.3/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.18.1/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/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.16.3/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";
import {
fromErrorObject,
isErrorObject,
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/error_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
assertEquals,
assertInstanceOf,
} from "https://deno.land/[email protected]/assert/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.18.1/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,4 +1,4 @@
import { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.18.1/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.16.3/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";
import {
Client,
Session,
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.16.3/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";
import {
Client,
Message,
Expand Down
2 changes: 1 addition & 1 deletion denops/@denops-private/host_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
assertSpyCalls,
stub,
} from "https://deno.land/[email protected]/testing/mock.ts";
import { AssertError } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { AssertError } from "https://deno.land/x/unknownutil@v3.18.1/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/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.16.3/mod.ts";
import { is, Predicate } from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";

export const isMeta: Predicate<Meta> = is.ObjectOf({
mode: is.LiteralOneOf(["release", "debug", "test"] as const),
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.16.3/mod.ts";
import { ensure } from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";
import { pop } from "https://deno.land/x/[email protected]/mod.ts";
import type { HostConstructor } from "./host.ts";
import { Vim } from "./host/vim.ts";
Expand Down

0 comments on commit 639ed41

Please sign in to comment.