Skip to content

Commit

Permalink
Update deno dependencies (#20)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow committed May 30, 2024
1 parent 20dd3a9 commit 9b9224e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions denops/@ddu-kinds/cpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {
Actions,
BaseKind,
DduItem,
} from "https://deno.land/x/ddu_vim@v3.9.0/types.ts";
import { Denops, fn } from "https://deno.land/x/ddu_vim@v3.9.0/deps.ts";
} from "https://deno.land/x/ddu_vim@v4.1.0/types.ts";
import { Denops, fn } from "https://deno.land/x/ddu_vim@v4.1.0/deps.ts";
import { ActionData } from "../@ddu-sources/cpl.ts";

type Params = Record<never, never>;
Expand Down
6 changes: 3 additions & 3 deletions denops/@ddu-sources/cpl.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { BaseSource, Item } from "https://deno.land/x/ddu_vim@v3.9.0/types.ts";
import { Denops } from "https://deno.land/x/ddu_vim@v3.9.0/deps.ts";
import { join, resolve } from "https://deno.land/std@0.210.0/path/mod.ts";
import { BaseSource, Item } from "https://deno.land/x/ddu_vim@v4.1.0/types.ts";
import { Denops } from "https://deno.land/x/ddu_vim@v4.1.0/deps.ts";
import { join, resolve } from "https://deno.land/std@0.224.0/path/mod.ts";

type Params = Record<never, never>;

Expand Down
10 changes: 5 additions & 5 deletions tests/test_runner.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { parse } from "https://deno.land/std@0.210.0/toml/mod.ts";
import { dirname, join } from "https://deno.land/std@0.210.0/path/mod.ts";
import { exists } from "https://deno.land/std@0.210.0/fs/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.11.0/mod.ts";
import { writeAll } from "https://deno.land/std@0.210.0/streams/mod.ts";
import { parse } from "https://deno.land/std@0.224.0/toml/mod.ts";
import { dirname, join } from "https://deno.land/std@0.224.0/path/mod.ts";
import { exists } from "https://deno.land/std@0.224.0/fs/mod.ts";
import { ensure, is } from "https://deno.land/x/unknownutil@v3.18.1/mod.ts";
import { writeAll } from "https://deno.land/std@0.224.0/streams/mod.ts";

const libPath = Deno.args[0];
const textDecoder = new TextDecoder("utf-8");
Expand Down

0 comments on commit 9b9224e

Please sign in to comment.