File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
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" ;
3
3
import { toErrorObject } from "jsr:@lambdalisue/errorutil@1.1.0" ;
4
4
import { DenopsImpl , type Host } from "./denops.ts" ;
5
5
import type { CallbackId , Service as HostService } from "./host.ts" ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import { promiseState } from "jsr:@lambdalisue/async@2.1.1";
22
22
import { unimplemented } from "jsr:@lambdalisue/errorutil@1.1.0" ;
23
23
import type { Host } from "./denops.ts" ;
24
24
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" ;
26
26
27
27
const NOOP = ( ) => { } ;
28
28
Original file line number Diff line number Diff line change 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" ;
3
3
import type { SemVer } from "jsr:@std/semver@0.224.0/types" ;
4
4
import { parse } from "jsr:@std/semver@0.224.0/parse" ;
5
5
Original file line number Diff line number Diff line change 8
8
assertStringIncludes ,
9
9
} from "jsr:@std/assert@1.0.1" ;
10
10
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" ;
12
12
import { AsyncDisposableStack } from "jsr:@nick/dispose@1.1.0/async-disposable-stack" ;
13
13
import { testHost } from "/denops-testutil/host.ts" ;
14
14
import { wait } from "/denops-testutil/wait.ts" ;
Original file line number Diff line number Diff line change 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" ;
4
4
5
5
let conf : Config | undefined ;
6
6
Original file line number Diff line number Diff line change 1
1
import { assert } from "jsr:@std/assert@1.0.1" ;
2
2
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" ;
4
4
import { channel , pop } from "jsr:@lambdalisue/streamtools@1.0.0" ;
5
5
import { tap } from "jsr:@milly/streams@^1.0.0/transform/tap" ;
6
6
import { getConfig } from "./conf.ts" ;
Original file line number Diff line number Diff line change 6
6
assertRejects ,
7
7
} from "jsr:@std/assert@1.0.1" ;
8
8
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" ;
10
10
import { useSharedServer } from "./shared_server.ts" ;
11
11
12
12
Deno . test ( "useSharedServer()" , async ( t ) => {
You can’t perform that action at this time.
0 commit comments