Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Oct 30, 2024
1 parent 8539b65 commit 96e1d65
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deno-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
branches:
- main
paths:
- '**.ts'
- '.github/workflows/deno-test.yml'
- 'deno.jsonc'
- "**.ts"
- ".github/workflows/deno-test.yml"
- "deno.jsonc"
pull_request:
branches:
- main
paths:
- '**.ts'
- "**.ts"

permissions:
contents: read
Expand Down
12 changes: 7 additions & 5 deletions denops/@ddu-kinds/git_commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import {
type Actions,
type DduItem,
type Previewer,
} from "jsr:@shougo/ddu-vim@~6.1.0/types";
} from "jsr:@shougo/ddu-vim@~6.2.0/types";
import {
BaseKind,
type GetPreviewerArguments,
} from "jsr:@shougo/ddu-vim@~6.1.0/kind";
} from "jsr:@shougo/ddu-vim@~6.2.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 { ensure, is } from "jsr:@core/unknownutil@~4.3.0";
import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import type { Denops } from "jsr:@denops/std@~7.3.0";
import * as fn from "jsr:@denops/std@~7.3.0/function";

export type ActionData = {
kind: "commit";
Expand Down Expand Up @@ -144,7 +144,9 @@ export const GitLogActions: Actions<Params> = {

export class Kind extends BaseKind<Params> {
actions = GitLogActions;
getPreviewer(args: GetPreviewerArguments): Promise<Previewer | undefined> {
override getPreviewer(
args: GetPreviewerArguments,
): Promise<Previewer | undefined> {
const action = args.item.action as ActionData;
if (action.kind == "graph") {
return Promise.resolve({
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 "jsr:@shougo/ddu-vim@~6.1.0/source";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import { treePath2Filename } from "jsr:@shougo/ddu-vim@~6.1.0/utils";
import type { Item } from "jsr:@shougo/ddu-vim@~6.1.0/types";
import { BaseSource } from "jsr:@shougo/ddu-vim@~6.1.0/source";
import type { GatherArguments } from "jsr:@shougo/ddu-vim@~6.2.0/source";
import * as fn from "jsr:@denops/std@~7.3.0/function";
import { treePath2Filename } from "jsr:@shougo/ddu-vim@~6.2.0/utils";
import type { Item } from "jsr:@shougo/ddu-vim@~6.2.0/types";
import { BaseSource } from "jsr:@shougo/ddu-vim@~6.2.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 96e1d65

Please sign in to comment.