Skip to content

Commit 1cb38b7

Browse files
committed
📦 Fix major version of unknownutil
1 parent db7ac3f commit 1cb38b7

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

denops_std/buffer/fileformat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
1+
import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.1/mod.ts#^";
22

33
export type FileFormat = "unix" | "dos" | "mac";
44

denops_std/function/buffer_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { assertEquals } from "https://deno.land/std@0.188.0/testing/asserts.ts";
22
import {
33
assertArray,
44
isObject,
5-
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
5+
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts#^";
66
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
77
import { BufInfo } from "./types.ts";
88
import * as buffer from "./buffer.ts";

denops_std/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.188.0/testing/asserts.ts";
2-
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
2+
import { assertNumber } from "https://deno.land/x/unknownutil@v2.1.1/mod.ts#^";
33
import { test } from "https://deno.land/x/denops_test@v1.3.1/mod.ts";
44
import * as cursor from "./cursor.ts";
55
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";

denops_std/function/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
AssertError,
33
isLike,
4-
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
4+
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts#^";
55

66
/**
77
* Type of `screenpos()` result.

denops_std/helper/input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Denops } from "https://deno.land/x/denops_core@v5.0.0/mod.ts";
22
import {
33
assertNumber,
44
assertString,
5-
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
5+
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts#^";
66
import * as fn from "../function/mod.ts";
77
import * as lambda from "../lambda/mod.ts";
88
import { execute } from "./execute.ts";

denops_std/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* import * as vars from "./variable/mod.ts";
1313
* import * as helper from "./helper/mod.ts";
1414
*
15-
* import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
15+
* import * as unknownutil from "https://deno.land/x/unknownutil@v2.1.1/mod.ts#^";
1616
*
1717
* export async function main(denops: Denops): Promise<void> {
1818
* denops.dispatcher = {

0 commit comments

Comments
 (0)