Skip to content

Commit

Permalink
Allow imports dependencies different patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Aug 3, 2024
1 parent 32d7808 commit edb02ac
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions denops/@ddu-kinds/git_commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import {
type Actions,
BaseKind,
type Previewer,
} from "jsr:@shougo/ddu-vim@5.0.0/types";
import type { DduItem } from "jsr:@shougo/ddu-vim@5.0.0/types";
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@3.18.1";
import type { Denops } from "jsr:@denops/std@7.0.1";
import * as fn from "jsr:@denops/std@7.0.1/function";
} from "jsr:@shougo/ddu-vim@~5.0.0/types";
import type { DduItem } from "jsr:@shougo/ddu-vim@~5.0.0/types";
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@~3.18.1";
import type { Denops } from "jsr:@denops/std@~7.0.1";
import * as fn from "jsr:@denops/std@~7.0.1/function";

export type ActionData = {
kind: "commit";
Expand Down
14 changes: 7 additions & 7 deletions denops/@ddu-sources/git_log.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
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 { TextLineStream } from "jsr:@std/streams@1.0.0";
import { ChunkedStream } from "jsr:@hibiki/chunked-stream@0.1.4";
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 { TextLineStream } from "jsr:@std/streams@~1.0.0";
import { ChunkedStream } from "jsr:@hibiki/chunked-stream@~0.1.4";

import type { ActionData } from "../@ddu-kinds/git_commit.ts";
import { echoerrCommand } from "jsr:@kyoh86/denops-util@0.1.0/command";
import { echoerrCommand } from "jsr:@kyoh86/denops-util@~0.1.0/command";

type Params = {
cwd?: string;
Expand Down
4 changes: 2 additions & 2 deletions dummy_test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { test } from "jsr:@denops/test@3.0.2";
import { assert } from "jsr:@std/assert@1.0.1";
import { test } from "jsr:@denops/test@~3.0.2";
import { assert } from "jsr:@std/assert@~1.0.1";

test({
mode: "all",
Expand Down

0 comments on commit edb02ac

Please sign in to comment.