Skip to content

Commit

Permalink
Use JSR modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed May 4, 2024
1 parent 9fadf43 commit b8af411
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions denops/dpp/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,8 @@ export * as op from "https://deno.land/x/[email protected]/option/mod.ts";
export * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
export * as vars from "https://deno.land/x/[email protected]/variable/mod.ts";
export * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
export { ensure, is } from "https://deno.land/x/[email protected]/mod.ts";
export {
assertEquals,
assertInstanceOf,
equal,
} from "https://deno.land/[email protected]/assert/mod.ts";

export { assertEquals, assertInstanceOf, equal } from "jsr:@std/[email protected]";
export {
basename,
dirname,
Expand All @@ -25,10 +21,9 @@ export {
parse,
SEPARATOR as pathsep,
toFileUrl,
} from "https://deno.land/[email protected]/path/mod.ts";
export {
deadline,
DeadlineError,
} from "https://deno.land/[email protected]/async/mod.ts";
} from "jsr:@std/[email protected]";
export { deadline, DeadlineError } from "jsr:@std/[email protected]";

export { TimeoutError } from "https://deno.land/x/[email protected]/response_waiter.ts";
export { Lock } from "https://deno.land/x/[email protected]/mod.ts";
export { ensure, is } from "https://deno.land/x/[email protected]/mod.ts";

0 comments on commit b8af411

Please sign in to comment.