Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Feb 4, 2024
1 parent 866bc33 commit 56c2386
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions denops/@ddu-sources/dpp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {
ActionFlags,
BaseSource,
Item,
} from "https://deno.land/x/ddu_vim@v3.9.0/types.ts";
import { Denops, vars } from "https://deno.land/x/ddu_vim@v3.9.0/deps.ts";
} from "https://deno.land/x/ddu_vim@v3.10.2/types.ts";
import { Denops, vars } from "https://deno.land/x/ddu_vim@v3.10.2/deps.ts";
import { ActionData } from "https://deno.land/x/[email protected]/file.ts";
import { Plugin } from "../dpp/types.ts";

Expand Down
20 changes: 10 additions & 10 deletions denops/dpp/deps.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
export type { Denops } from "https://deno.land/x/denops_std@v5.2.0/mod.ts";
export type { Denops } from "https://deno.land/x/denops_std@v6.0.0/mod.ts";
export {
echo,
execute,
} from "https://deno.land/x/denops_std@v5.2.0/helper/mod.ts";
} from "https://deno.land/x/denops_std@v6.0.0/helper/mod.ts";
export {
batch,
collect,
} from "https://deno.land/x/denops_std@v5.2.0/batch/mod.ts";
export * as op from "https://deno.land/x/denops_std@v5.2.0/option/mod.ts";
export * as fn from "https://deno.land/x/denops_std@v5.2.0/function/mod.ts";
export * as vars from "https://deno.land/x/denops_std@v5.2.0/variable/mod.ts";
export * as autocmd from "https://deno.land/x/denops_std@v5.2.0/autocmd/mod.ts";
} from "https://deno.land/x/denops_std@v6.0.0/batch/mod.ts";
export * as op from "https://deno.land/x/denops_std@v6.0.0/option/mod.ts";
export * as fn from "https://deno.land/x/denops_std@v6.0.0/function/mod.ts";
export * as vars from "https://deno.land/x/denops_std@v6.0.0/variable/mod.ts";
export * as autocmd from "https://deno.land/x/denops_std@v6.0.0/autocmd/mod.ts";
export { ensure, is } from "https://deno.land/x/[email protected]/mod.ts";
export {
assertEquals,
assertInstanceOf,
equal,
} from "https://deno.land/std@0.212.0/assert/mod.ts";
} from "https://deno.land/std@0.214.0/assert/mod.ts";
export {
basename,
dirname,
Expand All @@ -25,10 +25,10 @@ export {
parse,
SEP as pathsep,
toFileUrl,
} from "https://deno.land/std@0.212.0/path/mod.ts";
} from "https://deno.land/std@0.214.0/path/mod.ts";
export {
deadline,
DeadlineError,
} from "https://deno.land/std@0.212.0/async/mod.ts";
} from "https://deno.land/std@0.214.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";

0 comments on commit 56c2386

Please sign in to comment.