Skip to content

Commit 2f9f523

Browse files
committed
📦 bump @lambdalisue/errorutil from 1.0.0 to 1.1.0
1 parent 25e01b3 commit 2f9f523

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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.0.0";
7+
} from "jsr:@lambdalisue/errorutil@1.1.0";
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@0.224.0/mock";
1313
import { delay } from "jsr:@std/async@0.224.0/delay";
1414
import { promiseState } from "jsr:@lambdalisue/async@2.1.1";
15-
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.0.0";
15+
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.1.0";
1616
import { Client } from "jsr:@lambdalisue/messagepack-rpc@2.4.0";
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@0.224.0/mock";
1212
import { delay } from "jsr:@std/async@0.224.0/delay";
1313
import { promiseState } from "jsr:@lambdalisue/async@2.1.1";
14-
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.0.0";
14+
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.1.0";
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@0.224.0/mock";
77
import { AssertError } from "jsr:@core/unknownutil@3.18.1";
8-
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.0.0";
8+
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.1.0";
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@0.225.0/to-file-url";
3-
import { toErrorObject } from "jsr:@lambdalisue/errorutil@1.0.0";
3+
import { toErrorObject } from "jsr:@lambdalisue/errorutil@1.1.0";
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
@@ -19,7 +19,7 @@ import {
1919
} from "jsr:@std/testing@0.224.0/mock";
2020
import type { Meta } from "jsr:@denops/core@7.0.0";
2121
import { promiseState } from "jsr:@lambdalisue/async@2.1.1";
22-
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.0.0";
22+
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.1.0";
2323
import type { Host } from "./denops.ts";
2424
import { Service } from "./service.ts";
2525
import { toFileUrl } from "jsr:@std/path@0.225.0/to-file-url";

0 commit comments

Comments
 (0)