Skip to content

Commit 7b756da

Browse files
authored
Merge pull request #440 from vim-denops/change-archived-deps
2 parents 92852b9 + 804fa95 commit 7b756da

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

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_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ 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";
15+
import { unimplemented } from "jsr:@core/errorutil@^1.2.1";
1616
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";

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

Lines changed: 1 addition & 1 deletion
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";

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";

tests/denops/testutil/shared_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { assert } from "jsr:@std/assert@^1.0.1";
22
import { deadline } from "jsr:@std/async@^1.0.1/deadline";
33
import { resolve } from "jsr:@std/path@^1.0.2/resolve";
4-
import { channel, pop } from "jsr:@lambdalisue/streamtools@^1.0.0";
4+
import { channel, pop } from "jsr:@core/streamutil@^1.0.0";
55
import { tap } from "jsr:@milly/streams@^1.0.0/transform/tap";
66
import { getConfig } from "./conf.ts";
77

tests/denops/testutil/with.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { channel } from "jsr:@lambdalisue/streamtools@^1.0.0";
1+
import { channel } from "jsr:@core/streamutil@^1.0.0";
22
import { tap } from "jsr:@milly/streams@^1.0.0/transform/tap";
33
import { ADDR_ENV_NAME } from "./cli.ts";
44
import { getConfig } from "./conf.ts";

0 commit comments

Comments
 (0)