Skip to content

Commit 10ae0c8

Browse files
authored
Merge pull request #439 from vim-denops/update-deps
Update deps
2 parents 387fe57 + 5b0084c commit 10ae0c8

File tree

14 files changed

+26
-17
lines changed

14 files changed

+26
-17
lines changed

deno.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"test": "LANG=C deno test -A --parallel --shuffle",
66
"test:coverage": "deno task test --coverage=.coverage",
77
"coverage": "deno coverage --exclude=\"test[.]ts(#.*)?$\" .coverage",
8-
"update": "deno run --allow-env --allow-read --allow-write --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli **/*.ts",
8+
// NOTE: `--ignore @std/internal` is required to preserve test fixture.
9+
"update": "deno run --allow-env --allow-read --allow-write --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli --no-lock --ignore @std/internal **/*.ts",
910
"update:write": "deno task -q update --write",
1011
"update:commit": "deno task -q update --commit --prefix :package: --pre-commit=fmt,lint",
1112
"apply:supported-versions": "deno run --allow-read --allow-write .scripts/apply_supported_versions.ts"

denops/@denops-private/cli_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// NOTE: Use sinon to stub the getter property.
22
// @deno-types="npm:@types/sinon@^17.0.3"
3-
import sinon from "npm:sinon@^18.0.0";
3+
import sinon from "npm:sinon@^21.0.0";
44

55
import {
66
assertEquals,

denops/@denops-private/error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
isErrorObject,
55
toErrorObject,
66
tryOr,
7-
} from "jsr:@lambdalisue/errorutil@^1.1.0";
7+
} from "jsr:@core/errorutil@^1.2.1";
88

99
export function errorSerializer(err: unknown): unknown {
1010
if (err instanceof Error) {

denops/@denops-private/host/nvim.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { isNumber } from "jsr:@core/unknownutil@^4.0.0/is/number";
55
import { isString } from "jsr:@core/unknownutil@^4.0.0/is/string";
66
import { isTupleOf } from "jsr:@core/unknownutil@^4.0.0/is/tuple-of";
77
import { isUnionOf } from "jsr:@core/unknownutil@^4.0.0/is/union-of";
8-
import { Client, Session } from "jsr:@lambdalisue/messagepack-rpc@^2.4.0";
8+
import { Client, Session } from "jsr:@lambdalisue/messagepack-rpc@^2.4.1";
99
import { errorDeserializer, errorSerializer } from "../error.ts";
1010
import { getVersionOr } from "../version.ts";
1111
import { type Host, invoke, type Service } from "../host.ts";

denops/@denops-private/host/nvim_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import {
1212
} from "jsr:@std/testing@^1.0.0/mock";
1313
import { delay } from "jsr:@std/async@^1.0.1/delay";
1414
import { peekPromiseState } from "jsr:@core/asyncutil@^1.1.1";
15-
import { unimplemented } from "jsr:@lambdalisue/errorutil@^1.1.0";
16-
import { Client } from "jsr:@lambdalisue/messagepack-rpc@^2.4.0";
15+
import { unimplemented } from "jsr:@core/errorutil@^1.2.1";
16+
import { Client } from "jsr:@lambdalisue/messagepack-rpc@^2.4.1";
1717
import { withNeovim } from "/denops-testutil/with.ts";
1818
import type { Service } from "../host.ts";
1919
import { Neovim } from "./nvim.ts";

denops/@denops-private/host/vim_test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
} from "jsr:@std/testing@^1.0.0/mock";
1212
import { delay } from "jsr:@std/async@^1.0.1/delay";
1313
import { peekPromiseState } from "jsr:@core/asyncutil@^1.1.1";
14-
import { unimplemented } from "jsr:@lambdalisue/errorutil@^1.1.0";
14+
import { unimplemented } from "jsr:@core/errorutil@^1.2.1";
1515
import { Client, Session } from "jsr:@denops/vim-channel-command@^4.0.2";
1616
import { withVim } from "/denops-testutil/with.ts";
1717
import type { Service } from "../host.ts";
@@ -102,7 +102,7 @@ Deno.test("Vim", async (t) => {
102102
await assertRejects(
103103
() => host.call("@@@@@", -4),
104104
Error,
105-
"Failed to call '@@@@@' in Vim: Vim(let):E117: Unknown function: @@@@@",
105+
"Failed to call '@@@@@' in Vim:",
106106
);
107107
});
108108
});
@@ -148,7 +148,7 @@ Deno.test("Vim", async (t) => {
148148
assertEquals(ret, [4, 10]);
149149
assertMatch(
150150
err,
151-
/^Failed to call '@@@@@' in Vim: Vim\(.*\):E117: Unknown function: @@@@@/,
151+
/Failed to call '@@@@@' in Vim:/,
152152
);
153153
});
154154

denops/@denops-private/host_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
stub,
66
} from "jsr:@std/testing@^1.0.0/mock";
77
import { AssertError } from "jsr:@core/unknownutil@^4.0.0/assert";
8-
import { unimplemented } from "jsr:@lambdalisue/errorutil@^1.1.0";
8+
import { unimplemented } from "jsr:@core/errorutil@^1.2.1";
99
import { invoke, type Service } from "./host.ts";
1010

1111
Deno.test("invoke", async (t) => {

denops/@denops-private/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Denops, Entrypoint, Meta } from "jsr:@denops/core@^7.0.0";
22
import { toFileUrl } from "jsr:@std/path@^1.0.2/to-file-url";
3-
import { toErrorObject } from "jsr:@lambdalisue/errorutil@^1.1.0";
3+
import { toErrorObject } from "jsr:@core/errorutil@^1.2.1";
44
import { DenopsImpl, type Host } from "./denops.ts";
55
import type { CallbackId, Service as HostService } from "./host.ts";
66

denops/@denops-private/service_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
import { toFileUrl } from "jsr:@std/path@^1.0.2/to-file-url";
2222
import type { Meta } from "jsr:@denops/core@^7.0.0";
2323
import { flushPromises, peekPromiseState } from "jsr:@core/asyncutil@^1.1.1";
24-
import { unimplemented } from "jsr:@lambdalisue/errorutil@^1.1.0";
24+
import { unimplemented } from "jsr:@core/errorutil@^1.2.1";
2525
import { INVALID_PLUGIN_NAMES } from "/denops-testdata/invalid_plugin_names.ts";
2626
import { resolveTestDataURL } from "/denops-testdata/resolve.ts";
2727
import type { Host } from "./denops.ts";

denops/@denops-private/worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
writableStreamFromWorker,
77
} from "jsr:@lambdalisue/workerio@^4.0.1";
88
import { ensure } from "jsr:@core/unknownutil@^4.0.0/ensure";
9-
import { pop } from "jsr:@lambdalisue/streamtools@^1.0.0";
9+
import { pop } from "jsr:@core/streamutil@^1.0.0";
1010
import { asyncSignal } from "jsr:@milly/async-signal@^1.0.0";
1111
import type { Meta } from "jsr:@denops/core@^7.0.0";
1212
import type { Host, HostConstructor } from "./host.ts";

0 commit comments

Comments
 (0)