Skip to content

Commit 21dcf24

Browse files
committed
📦 bump @std/path from 0.225.0 to 1.0.2
1 parent c5b3864 commit 21dcf24

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

denops/@denops-private/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Denops, Entrypoint, Meta } from "jsr:@denops/core@7.0.0";
2-
import { toFileUrl } from "jsr:@std/path@0.225.0/to-file-url";
2+
import { toFileUrl } from "jsr:@std/path@1.0.2/to-file-url";
33
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";

denops/@denops-private/service_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { promiseState } from "jsr:@lambdalisue/async@2.1.1";
2222
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.1.0";
2323
import type { Host } from "./denops.ts";
2424
import { Service } from "./service.ts";
25-
import { toFileUrl } from "jsr:@std/path@0.225.0/to-file-url";
25+
import { toFileUrl } from "jsr:@std/path@1.0.2/to-file-url";
2626

2727
const NOOP = () => {};
2828

denops/@denops-private/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { dirname } from "jsr:@std/path@0.225.0/dirname";
2-
import { fromFileUrl } from "jsr:@std/path@0.225.0/from-file-url";
1+
import { dirname } from "jsr:@std/path@1.0.2/dirname";
2+
import { fromFileUrl } from "jsr:@std/path@1.0.2/from-file-url";
33
import type { SemVer } from "jsr:@std/semver@0.224.0/types";
44
import { parse } from "jsr:@std/semver@0.224.0/parse";
55

tests/denops/runtime/functions/plugin_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
assertStringIncludes,
99
} from "jsr:@std/assert@1.0.1";
1010
import { delay } from "jsr:@std/async@^0.224.0";
11-
import { join } from "jsr:@std/path@0.225.0/join";
11+
import { join } from "jsr:@std/path@1.0.2/join";
1212
import { AsyncDisposableStack } from "jsr:@nick/dispose@1.1.0/async-disposable-stack";
1313
import { testHost } from "/denops-testutil/host.ts";
1414
import { wait } from "/denops-testutil/wait.ts";

tests/denops/testutil/conf.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { fromFileUrl } from "jsr:@std/path@0.225.0/from-file-url";
2-
import { resolve } from "jsr:@std/path@0.225.0/resolve";
3-
import { SEPARATOR as SEP } from "jsr:@std/path@0.225.0/constants";
1+
import { fromFileUrl } from "jsr:@std/path@1.0.2/from-file-url";
2+
import { resolve } from "jsr:@std/path@1.0.2/resolve";
3+
import { SEPARATOR as SEP } from "jsr:@std/path@1.0.2/constants";
44

55
let conf: Config | undefined;
66

tests/denops/testutil/shared_server.ts

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

tests/denops/testutil/shared_server_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
assertRejects,
77
} from "jsr:@std/assert@1.0.1";
88
import { delay } from "jsr:@std/async@1.0.1/delay";
9-
import { join } from "jsr:@std/path@0.225.0/join";
9+
import { join } from "jsr:@std/path@1.0.2/join";
1010
import { useSharedServer } from "./shared_server.ts";
1111

1212
Deno.test("useSharedServer()", async (t) => {

0 commit comments

Comments
 (0)