Skip to content

Commit fe96803

Browse files
github-actions[bot]lambdalisue
authored andcommitted
📦 bump deno.land/x/unknownutil from v3.14.1 to v3.16.3
1 parent 117744f commit fe96803

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

buffer/buffer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Denops } from "../mod.ts";
2-
import { maybe } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
2+
import { maybe } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
33
import * as autocmd from "../autocmd/mod.ts";
44
import * as batch from "../batch/mod.ts";
55
import * as fn from "../function/mod.ts";

buffer/fileformat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
is,
55
maybe,
66
PredicateType,
7-
} from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
7+
} from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
88

99
/**
1010
* Predicate that the value is FileFormat.

function/buffer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
2-
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
2+
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
33
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
44
import { BufInfo } from "./types.ts";
55
import * as buffer from "./buffer.ts";

function/cursor_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
2-
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
2+
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
33
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
44
import * as cursor from "./cursor.ts";
55
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";

function/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
1+
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
22

33
/**
44
* Type of `screenpos()` result.

helper/expr_string.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Context, Denops, Dispatcher, Meta } from "../mod.ts";
2-
import is from "https://deno.land/x/unknownutil@v3.14.1/is.ts";
2+
import is from "https://deno.land/x/unknownutil@v3.16.3/is.ts";
33
import { execute } from "./execute.ts";
44
import { ulid } from "https://deno.land/std@0.217.0/ulid/mod.ts";
55

helper/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Denops } from "../mod.ts";
2-
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
2+
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
33
import * as fn from "../function/mod.ts";
44
import * as lambda from "../lambda/mod.ts";
55
import { execute } from "./execute.ts";

helper/keymap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
import { batch } from "../batch/mod.ts";
99
import { register } from "../lambda/mod.ts";
1010
import { feedkeys } from "../function/mod.ts";
11-
import is from "https://deno.land/x/unknownutil@v3.14.1/is.ts";
11+
import is from "https://deno.land/x/unknownutil@v3.16.3/is.ts";
1212

1313
export type Keys = {
1414
keys: string | ExprString;

helper/keymap_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
22
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
3-
import { is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
3+
import { is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
44
import * as fn from "../function/mod.ts";
55
import { exprQuote as q } from "./expr_string.ts";
66
import { KeysSpecifier, send } from "./keymap.ts";

0 commit comments

Comments
 (0)