Skip to content

Commit

Permalink
📦 bump deno.land/x/unknownutil from v3.16.3 to v3.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 12, 2024
1 parent 5bc45fd commit b69ff95
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/denops_core@v6.0.5/mod.ts";
import { BatchError } from "https://deno.land/x/denops_core@v6.0.5/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.17.2/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.17.2/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/std@0.222.1/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.17.2/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.17.2/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.17.2/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.17.2/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/std@0.222.1/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.17.2/mod.ts";
import { invoke, Service } from "./host.ts";
import { unimplemented } from "https://deno.land/x/errorutil@v1.0.0/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/denops_core@v6.0.5/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.17.2/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/workerio@v3.1.0/mod.ts";
import { ensure } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { ensure } from "https://deno.land/x/unknownutil@v3.17.2/mod.ts";
import { pop } from "https://deno.land/x/streamtools@v1.0.0/mod.ts";
import type { HostConstructor } from "./host.ts";
import { Vim } from "./host/vim.ts";
Expand Down

0 comments on commit b69ff95

Please sign in to comment.