Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Mar 12, 2024
1 parent d10b96e commit 9df79c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion denops/ddc/ddc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ export class Ddc {
(o.isVolatile && context.event !== "Update")
) {
// Not matched.

const replacePattern = new RegExp(o.replaceSourceInputPattern);

const result = await callSourceGather(
Expand Down
10 changes: 5 additions & 5 deletions denops/ddc/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ export * as vimOp from "https://deno.land/x/denops_std@v6.3.0/option/vim/mod.ts"
export * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
export * as vars from "https://deno.land/x/denops_std@v6.3.0/variable/mod.ts";
export * as autocmd from "https://deno.land/x/denops_std@v6.3.0/autocmd/mod.ts";
export * as base64 from "https://deno.land/std@0.218.2/encoding/base64.ts";
export * as base64 from "https://deno.land/std@0.219.1/encoding/base64.ts";
export {
assertEquals,
equal,
} from "https://deno.land/std@0.218.2/assert/mod.ts";
} from "https://deno.land/std@0.219.1/assert/mod.ts";
export {
basename,
parse,
toFileUrl,
} from "https://deno.land/std@0.218.2/path/mod.ts";
} from "https://deno.land/std@0.219.1/path/mod.ts";
export {
deadline,
DeadlineError,
} from "https://deno.land/std@0.218.2/async/mod.ts";
} from "https://deno.land/std@0.219.1/async/mod.ts";
export { TimeoutError } from "https://deno.land/x/msgpack_rpc@v4.0.1/response_waiter.ts";
export { spy } from "https://deno.land/x/mock@0.15.2/mock.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.17.0/mod.ts";
export { Lock } from "https://deno.land/x/async@v2.1.0/mod.ts";

0 comments on commit 9df79c3

Please sign in to comment.