Skip to content

Commit

Permalink
Merge pull request #234 from vim-denops/automation/update-dependencies
Browse files Browse the repository at this point in the history
📦 update dependencies
  • Loading branch information
lambdalisue committed Feb 24, 2024
2 parents 2e1696d + 93301f3 commit 6964e71
Show file tree
Hide file tree
Showing 46 changed files with 80 additions and 80 deletions.
2 changes: 1 addition & 1 deletion .scripts/gen-function/gen-function.ts
Expand Up @@ -2,7 +2,7 @@ import {
difference,
intersection,
} from "https://deno.land/x/set_operations@v1.1.1/mod.ts";
import * as path from "https://deno.land/std@0.214.0/path/mod.ts";
import * as path from "https://deno.land/std@0.217.0/path/mod.ts";
import { parse } from "./parse.ts";
import { format } from "./format.ts";
import { DOCS_OVERRIDES } from "./override.ts";
Expand Down
2 changes: 1 addition & 1 deletion .scripts/gen-option/gen-option.ts
Expand Up @@ -2,7 +2,7 @@ import {
difference,
intersection,
} from "https://deno.land/x/set_operations@v1.1.1/mod.ts";
import * as path from "https://deno.land/std@0.214.0/path/mod.ts";
import * as path from "https://deno.land/std@0.217.0/path/mod.ts";
import { parse } from "./parse.ts";
import { format } from "./format.ts";
import { DOCS_OVERRIDES } from "./override.ts";
Expand Down
2 changes: 1 addition & 1 deletion .scripts/markdown_test.ts
@@ -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 { createMarkdownFromHelp } from "./markdown.ts";

Expand Down
2 changes: 1 addition & 1 deletion .scripts/transform.ts
@@ -1,7 +1,7 @@
import {
fromFileUrl,
toFileUrl,
} from "https://deno.land/std@0.214.0/path/mod.ts";
} from "https://deno.land/std@0.217.0/path/mod.ts";
import { intersection } from "https://deno.land/x/set_operations@v1.1.1/mod.ts";

interface ModuleInformation {
Expand Down
2 changes: 1 addition & 1 deletion .scripts/utils.ts
@@ -1,4 +1,4 @@
import * as streams from "https://deno.land/std@0.214.0/streams/mod.ts";
import * as streams from "https://deno.land/std@0.217.0/streams/mod.ts";

/**
* Downloads a text file and returns the contents.
Expand Down
4 changes: 2 additions & 2 deletions .scripts/utils_test.ts
Expand Up @@ -3,8 +3,8 @@ import {
assertInstanceOf,
assertRejects,
assertThrows,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { stub } from "https://deno.land/std@0.214.0/testing/mock.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { stub } from "https://deno.land/std@0.217.0/testing/mock.ts";

import {
Counter,
Expand Down
2 changes: 1 addition & 1 deletion argument/flags_test.ts
@@ -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 { parseFlags } from "./flags.ts";

Deno.test("parseFlags", () => {
Expand Down
2 changes: 1 addition & 1 deletion argument/mod_test.ts
@@ -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 { parse } from "./mod.ts";

Deno.test("parse", () => {
Expand Down
2 changes: 1 addition & 1 deletion argument/opts_test.ts
@@ -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 { parseOpts } from "./opts.ts";

Deno.test("parseOpts", () => {
Expand Down
4 changes: 2 additions & 2 deletions autocmd/common_test.ts
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { globals } from "../variable/mod.ts";
import { define, emit, emitAll, list, remove } from "./common.ts";

Expand Down
4 changes: 2 additions & 2 deletions autocmd/group_test.ts
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { globals } from "../variable/mod.ts";
import { group } from "./group.ts";

Expand Down
6 changes: 3 additions & 3 deletions batch/batch_test.ts
@@ -1,10 +1,10 @@
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 {
assertSpyCall,
assertSpyCalls,
spy,
} from "https://deno.land/std@0.214.0/testing/mock.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/testing/mock.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { batch, BatchHelper } from "./batch.ts";

test({
Expand Down
4 changes: 2 additions & 2 deletions batch/collect_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import type { Denops } from "../mod.ts";
import { collect } from "./collect.ts";

Expand Down
4 changes: 2 additions & 2 deletions buffer/buffer.ts
@@ -1,5 +1,5 @@
import type { Denops } from "../mod.ts";
import { maybe } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { maybe } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import * as autocmd from "../autocmd/mod.ts";
import * as batch from "../batch/mod.ts";
import * as fn from "../function/mod.ts";
Expand All @@ -12,7 +12,7 @@ import {
splitText,
} from "./fileformat.ts";
import { tryDecode } from "./fileencoding.ts";
import { ulid } from "https://deno.land/std@0.214.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.217.0/ulid/mod.ts";

const cacheKey = "denops_std/buffer/buffer.ts@1";

Expand Down
4 changes: 2 additions & 2 deletions buffer/buffer_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
import * as fn from "../function/mod.ts";
import {
Expand Down
4 changes: 2 additions & 2 deletions buffer/decoration_test.ts
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import * as fn from "../function/mod.ts";
import * as vimFn from "../function/vim/mod.ts";
import * as nvimFn from "../function/nvim/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion buffer/fileencoding_test.ts
@@ -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 { default as Encoding } from "https://cdn.skypack.dev/encoding-japanese@2.0.0/";
import { tryDecode } from "./fileencoding.ts";

Expand Down
2 changes: 1 addition & 1 deletion buffer/fileformat.ts
Expand Up @@ -4,7 +4,7 @@ import {
is,
maybe,
PredicateType,
} from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
} from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";

/**
* Predicate that the value is FileFormat.
Expand Down
2 changes: 1 addition & 1 deletion buffer/fileformat_test.ts
@@ -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 { FileFormat, findFileFormat, splitText } from "./fileformat.ts";

Deno.test("splitText", async (t) => {
Expand Down
2 changes: 1 addition & 1 deletion bufname/_utils_test.ts
@@ -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 { decode, encode } from "./_utils.ts";

Deno.test("encode does nothing on alphabet characters", () => {
Expand Down
4 changes: 2 additions & 2 deletions bufname/bufname_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertThrows,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import * as path from "https://deno.land/std@0.214.0/path/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import * as path from "https://deno.land/std@0.217.0/path/mod.ts";
import { format, parse } from "./bufname.ts";

Deno.test("format throws exception when 'scheme' contains unusable characters", () => {
Expand Down
6 changes: 3 additions & 3 deletions function/buffer_test.ts
@@ -1,6 +1,6 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { BufInfo } from "./types.ts";
import * as buffer from "./buffer.ts";

Expand Down
6 changes: 3 additions & 3 deletions function/cursor_test.ts
@@ -1,6 +1,6 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import * as cursor from "./cursor.ts";
import { assertPosition, assertScreenPos, isScreenPos } from "./types.ts";

Expand Down
6 changes: 3 additions & 3 deletions function/getreginfo.ts
@@ -1,7 +1,7 @@
import type { Denops } from "../mod.ts";
import { lt, parse } from "https://deno.land/std@0.214.0/semver/mod.ts";
import { lessThan, parse } from "https://deno.land/std@0.217.0/semver/mod.ts";
import { execute } from "../helper/mod.ts";
import { ulid } from "https://deno.land/std@0.214.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.217.0/ulid/mod.ts";

const cacheKey = "denops_std/function/getreginfo.ts@1";

Expand Down Expand Up @@ -71,7 +71,7 @@ export async function getreginfo(
): Promise<unknown> {
if (
denops.meta.host === "vim" &&
lt(parse(denops.meta.version), parse("9.0.936"))
lessThan(parse(denops.meta.version), parse("9.0.936"))
) {
// Vim prior to 9.0.0936 need a workaround
// https://github.com/vim/vim/issues/11598
Expand Down
4 changes: 2 additions & 2 deletions function/input_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { input, inputlist, inputsecret } from "./input.ts";
import * as autocmd from "../autocmd/mod.ts";
import { execute } from "../helper/execute.ts";
Expand Down
2 changes: 1 addition & 1 deletion function/types.ts
@@ -1,4 +1,4 @@
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";

/**
* Type of `screenpos()` result.
Expand Down
4 changes: 2 additions & 2 deletions function/various_test.ts
@@ -1,5 +1,5 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import * as various from "./various.ts";

test({
Expand Down
2 changes: 1 addition & 1 deletion helper/echo.ts
@@ -1,6 +1,6 @@
import type { Denops } from "../mod.ts";
import { execute } from "./execute.ts";
import { ulid } from "https://deno.land/std@0.214.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.217.0/ulid/mod.ts";

const cacheKey = "denops_std/helper/echo@1";
const cacheKeySilent = "denops_std/helper/echo/silent@1";
Expand Down
2 changes: 1 addition & 1 deletion helper/echo_test.ts
@@ -1,4 +1,4 @@
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { echo, echoerr } from "./echo.ts";

test({
Expand Down
4 changes: 2 additions & 2 deletions helper/execute_test.ts
Expand Up @@ -2,8 +2,8 @@ import {
assertEquals,
assertInstanceOf,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { execute } from "./execute.ts";

test({
Expand Down
4 changes: 2 additions & 2 deletions helper/expr_string.ts
@@ -1,7 +1,7 @@
import type { Context, Denops, Dispatcher, Meta } from "../mod.ts";
import is from "https://deno.land/x/unknownutil@v3.14.1/is.ts";
import is from "https://deno.land/x/unknownutil@v3.16.3/is.ts";
import { execute } from "./execute.ts";
import { ulid } from "https://deno.land/std@0.214.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.217.0/ulid/mod.ts";

const EXPR_STRING_MARK = "__denops_expr_string";

Expand Down
4 changes: 2 additions & 2 deletions helper/expr_string_test.ts
Expand Up @@ -4,8 +4,8 @@ import {
assertObjectMatch,
assertRejects,
assertThrows,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import {
exprQuote,
isExprString,
Expand Down
4 changes: 2 additions & 2 deletions helper/input.ts
@@ -1,9 +1,9 @@
import type { Denops } from "../mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { assert, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import * as fn from "../function/mod.ts";
import * as lambda from "../lambda/mod.ts";
import { execute } from "./execute.ts";
import { ulid } from "https://deno.land/std@0.214.0/ulid/mod.ts";
import { ulid } from "https://deno.land/std@0.217.0/ulid/mod.ts";

const cacheKey = "denops_std/helper/input@1";

Expand Down
4 changes: 2 additions & 2 deletions helper/input_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { input } from "./input.ts";
import { execute } from "./execute.ts";
import * as autocmd from "../autocmd/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion helper/keymap.ts
Expand Up @@ -8,7 +8,7 @@ import {
import { batch } from "../batch/mod.ts";
import { register } from "../lambda/mod.ts";
import { feedkeys } from "../function/mod.ts";
import is from "https://deno.land/x/unknownutil@v3.14.1/is.ts";
import is from "https://deno.land/x/unknownutil@v3.16.3/is.ts";

export type Keys = {
keys: string | ExprString;
Expand Down
6 changes: 3 additions & 3 deletions helper/keymap_test.ts
@@ -1,6 +1,6 @@
import { assertEquals } from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import * as fn from "../function/mod.ts";
import { exprQuote as q } from "./expr_string.ts";
import { KeysSpecifier, send } from "./keymap.ts";
Expand Down
4 changes: 2 additions & 2 deletions helper/load.ts
@@ -1,6 +1,6 @@
import type { Denops } from "../mod.ts";
import * as fs from "https://deno.land/std@0.214.0/fs/mod.ts";
import * as path from "https://deno.land/std@0.214.0/path/mod.ts";
import * as fs from "https://deno.land/std@0.217.0/fs/mod.ts";
import * as path from "https://deno.land/std@0.217.0/path/mod.ts";
import { execute } from "./execute.ts";

const loaded = new Set<URL>();
Expand Down
4 changes: 2 additions & 2 deletions helper/load_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { load } from "./load.ts";

const loadScriptUrlBase =
Expand Down
4 changes: 2 additions & 2 deletions lambda/mod_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import * as lambda from "./mod.ts";

test({
Expand Down
2 changes: 1 addition & 1 deletion mapping/_parser_test.ts
@@ -1,7 +1,7 @@
import {
assertEquals,
assertThrows,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { Mapping } from "./types.ts";
import { parse } from "./_parser.ts";

Expand Down
4 changes: 2 additions & 2 deletions mapping/mod_test.ts
@@ -1,8 +1,8 @@
import {
assertEquals,
assertRejects,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { Mapping, Mode } from "./types.ts";
import * as mapping from "./mod.ts";

Expand Down
4 changes: 2 additions & 2 deletions option/_generated_test.ts
Expand Up @@ -2,8 +2,8 @@ import {
assert as assertTruthy,
assertEquals,
assertFalse as assertFalsy,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.1/mod.ts";
} from "https://deno.land/std@0.217.0/assert/mod.ts";
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import * as _generated from "./_generated.ts";

test({
Expand Down

0 comments on commit 6964e71

Please sign in to comment.