Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Sep 1, 2024
1 parent 7a2edb2 commit d179ce1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
14 changes: 8 additions & 6 deletions denops/@ddu-kinds/git_commit.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import {
ActionFlags,
type Actions,
BaseKind,
type DduItem,
type Previewer,
} from "jsr:@shougo/ddu-vim@~5.0.0/types";
import type { DduItem } from "jsr:@shougo/ddu-vim@~5.0.0/types";
} from "jsr:@shougo/ddu-vim@~6.0.0/types";
import {
BaseKind,
type GetPreviewerArguments,
} from "jsr:@shougo/ddu-vim@~6.0.0/kind";
import { echoallCommand } from "jsr:@kyoh86/denops-util@~0.1.0/command";
import { yank } from "jsr:@kyoh86/denops-util@~0.1.0/yank";
import { put } from "jsr:@kyoh86/denops-util@~0.1.0/put";
import type { GetPreviewerArguments } from "jsr:@shougo/ddu-vim@~5.0.0/kind";
import { ensure, is } from "jsr:@core/unknownutil@~4.3.0";
import type { Denops } from "jsr:@denops/std@~7.0.1";
import * as fn from "jsr:@denops/std@~7.0.1/function";
import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";

export type ActionData = {
kind: "commit";
Expand Down
9 changes: 5 additions & 4 deletions denops/@ddu-sources/git_log.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { GatherArguments } from "jsr:@shougo/ddu-vim@~5.0.0/source";
import * as fn from "jsr:@denops/std@~7.0.1/function";
import { treePath2Filename } from "jsr:@shougo/ddu-vim@~5.0.0/utils";
import { BaseSource, type Item } from "jsr:@shougo/ddu-vim@~5.0.0/types";
import type { GatherArguments } from "jsr:@shougo/ddu-vim@~6.0.0/source";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import { treePath2Filename } from "jsr:@shougo/ddu-vim@~6.0.0/utils";
import type { Item } from "jsr:@shougo/ddu-vim@~6.0.0/types";
import { BaseSource } from "jsr:@shougo/ddu-vim@~6.0.0/source";
import { TextLineStream } from "jsr:@std/streams@~1.0.0";
import { ChunkedStream } from "jsr:@hibiki/chunked-stream@~0.1.4";

Expand Down

0 comments on commit d179ce1

Please sign in to comment.