Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jun 21, 2023
1 parent 392f464 commit a8087ca
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions denops/ddu/deps.ts
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
export type { Denops } from "https://deno.land/x/[email protected].0/mod.ts";
export type { Denops } from "https://deno.land/x/[email protected].1/mod.ts";
export {
echo,
execute,
} from "https://deno.land/x/[email protected].0/helper/mod.ts";
} from "https://deno.land/x/[email protected].1/helper/mod.ts";
export {
batch,
collect,
} from "https://deno.land/x/[email protected].0/batch/mod.ts";
export * as op from "https://deno.land/x/[email protected].0/option/mod.ts";
export * as fn from "https://deno.land/x/[email protected].0/function/mod.ts";
export * as vars from "https://deno.land/x/[email protected].0/variable/mod.ts";
export * as autocmd from "https://deno.land/x/[email protected].0/autocmd/mod.ts";
} from "https://deno.land/x/[email protected].1/batch/mod.ts";
export * as op from "https://deno.land/x/[email protected].1/option/mod.ts";
export * as fn from "https://deno.land/x/[email protected].1/function/mod.ts";
export * as vars from "https://deno.land/x/[email protected].1/variable/mod.ts";
export * as autocmd from "https://deno.land/x/[email protected].1/autocmd/mod.ts";
export {
ensureArray,
ensureNumber,
ensureObject,
ensureString,
} from "https://deno.land/x/unknownutil@v2.1.1/mod.ts";
} from "https://deno.land/x/unknownutil@v3.0.0/mod.ts";
export {
assertEquals,
equal,
} from "https://deno.land/std@0.191.0/testing/asserts.ts";
export { parse, toFileUrl } from "https://deno.land/std@0.191.0/path/mod.ts";
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
export { parse, toFileUrl } from "https://deno.land/std@0.192.0/path/mod.ts";
export {
deadline,
DeadlineError,
} from "https://deno.land/std@0.191.0/async/mod.ts";
} from "https://deno.land/std@0.192.0/async/mod.ts";
export { TimeoutError } from "https://deno.land/x/[email protected]/response_waiter.ts";
export { Lock } from "https://deno.land/x/[email protected]/mod.ts";
export {
basename,
dirname,
SEP as pathsep,
} from "https://deno.land/std@0.191.0/path/mod.ts";
} from "https://deno.land/std@0.192.0/path/mod.ts";

0 comments on commit a8087ca

Please sign in to comment.