Skip to content

Commit dbe1dea

Browse files
authored
Use JSR modules (#26)
1 parent 8b7c1ef commit dbe1dea

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

denops/@ddc-file/deps.ts

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
export type {
2-
Context,
3-
Item,
4-
} from "https://deno.land/x/ddc_vim@v5.0.0/types.ts";
5-
export { BaseSource } from "https://deno.land/x/ddc_vim@v5.0.0/types.ts";
6-
export type { Denops } from "https://deno.land/x/ddc_vim@v5.0.0/deps.ts";
7-
export { fn, vars } from "https://deno.land/x/ddc_vim@v5.0.0/deps.ts";
1+
export type { Context, Item } from "jsr:@shougo/ddc-vim@6.0.0/types";
2+
export { BaseSource } from "jsr:@shougo/ddc-vim@6.0.0/types";
83
export type {
94
GatherArguments,
105
GetCompletePositionArguments,
11-
} from "https://deno.land/x/ddc_vim@v5.0.0/base/source.ts";
6+
} from "jsr:@shougo/ddc-vim@6.0.0/source";
7+
8+
export type { Denops } from "jsr:@denops/std@7.0.1";
9+
export * as fn from "jsr:@denops/std@7.0.1/function";
10+
export * as vars from "jsr:@denops/std@7.0.1/variable";
1211

13-
export * as path from "jsr:@std/path@0.224.0";
14-
export * as fs from "jsr:@std/fs@0.224.0";
15-
export * as asserts from "jsr:@std/assert@0.225.1";
16-
export * as posix from "jsr:@std/path@0.224.0/posix";
17-
export * as windows from "jsr:@std/path@0.224.0/windows";
12+
export * as path from "jsr:@std/path@1.0.2";
13+
export * as fs from "jsr:@std/fs@1.0.0";
14+
export * as asserts from "jsr:@std/assert@1.0.1";
15+
export * as posix from "jsr:@std/path@1.0.2/posix";
16+
export * as windows from "jsr:@std/path@1.0.2/windows";
1817

1918
export {
2019
asyncIteratorFrom as fromA,

0 commit comments

Comments
 (0)