Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Mar 14, 2024
1 parent 1eed305 commit ad8c429
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions denops/@ddu-kinds/git_commit.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import type { Denops } from "https://deno.land/x/ddu_vim@v3.10.2/deps.ts";
import type { Denops } from "https://deno.land/x/ddu_vim@v3.10.3/deps.ts";
import {
ActionFlags,
BaseKind,
} from "https://deno.land/x/ddu_vim@v3.10.2/types.ts";
} from "https://deno.land/x/ddu_vim@v3.10.3/types.ts";
import type {
Actions,
Previewer,
} from "https://deno.land/x/ddu_vim@v3.10.2/types.ts";
import type { DduItem } from "https://deno.land/x/ddu_vim@v3.10.2/types.ts";
} from "https://deno.land/x/ddu_vim@v3.10.3/types.ts";
import type { DduItem } from "https://deno.land/x/ddu_vim@v3.10.3/types.ts";
import { echoallCommand } from "https://denopkg.com/kyoh86/denops-util@v0.0.6/command.ts";
import { yank } from "https://denopkg.com/kyoh86/denops-util@v0.0.6/yank.ts";
import { put } from "https://denopkg.com/kyoh86/denops-util@v0.0.6/put.ts";
import type { GetPreviewerArguments } from "https://deno.land/x/ddu_vim@v3.10.2/base/kind.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.16.3/mod.ts";
import { fn } from "https://deno.land/x/ddu_vim@v3.10.2/deps.ts";
import type { GetPreviewerArguments } from "https://deno.land/x/ddu_vim@v3.10.3/base/kind.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.17.0/mod.ts";
import { fn } from "https://deno.land/x/ddu_vim@v3.10.3/deps.ts";

export type ActionData = {
kind: "commit";
Expand Down
10 changes: 5 additions & 5 deletions denops/@ddu-sources/git_log.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { GatherArguments } from "https://deno.land/x/ddu_vim@v3.10.2/base/source.ts";
import { fn } from "https://deno.land/x/ddu_vim@v3.10.2/deps.ts";
import { treePath2Filename } from "https://deno.land/x/ddu_vim@v3.10.2/utils.ts";
import { BaseSource, Item } from "https://deno.land/x/ddu_vim@v3.10.2/types.ts";
import { TextLineStream } from "https://deno.land/std@0.217.0/streams/text_line_stream.ts";
import type { GatherArguments } from "https://deno.land/x/ddu_vim@v3.10.3/base/source.ts";
import { fn } from "https://deno.land/x/ddu_vim@v3.10.3/deps.ts";
import { treePath2Filename } from "https://deno.land/x/ddu_vim@v3.10.3/utils.ts";
import { BaseSource, Item } from "https://deno.land/x/ddu_vim@v3.10.3/types.ts";
import { TextLineStream } from "https://deno.land/std@0.219.1/streams/text_line_stream.ts";
import { ChunkedStream } from "https://deno.land/x/chunked_stream@0.1.4/mod.ts";

import { ActionData } from "../@ddu-kinds/git_commit.ts";
Expand Down
2 changes: 1 addition & 1 deletion dummy_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from "https://deno.land/x/denops_test@v1.6.2/mod.ts";
import { assert } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.219.1/assert/mod.ts";

test({
mode: "all",
Expand Down

0 comments on commit ad8c429

Please sign in to comment.