Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Jan 28, 2024
1 parent 6cfe8f7 commit d5df5f5
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion denops/docbase/api/fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
ensure,
Predicate as P,
} from "https://deno.land/x/[email protected]/mod.ts";
import { getLogger } from "https://deno.land/std@0.212.0/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.213.0/log/mod.ts";
import { Response, ResponseWithBody } from "./types.ts";

const API_URL = "https://api.docbase.io";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/handler/new_post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { execute } from "https://deno.land/x/[email protected]/helper/execute.ts";
import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected]/mod.ts";
import { getLogger } from "https://deno.land/std@0.212.0/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.213.0/log/mod.ts";

import { Handler, openBuffer } from "../router.ts";
import type { Context, Params } from "../router.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/docbase/handler/post.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Single Post Buffer

import { extract } from "https://deno.land/std@0.212.0/front_matter/yaml.ts";
import { extract } from "https://deno.land/std@0.213.0/front_matter/yaml.ts";
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts";
import * as option from "https://deno.land/x/[email protected]/option/mod.ts";
import * as variable from "https://deno.land/x/[email protected]/variable/variable.ts";
import { getbufline } from "https://deno.land/x/[email protected]/function/buffer.ts";
import { ensure, is } from "https://deno.land/x/[email protected]/mod.ts";
import { getLogger } from "https://deno.land/std@0.212.0/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.213.0/log/mod.ts";

import { Filetype, prepareProxy } from "./buffer.ts";
import { Handler } from "../router.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/handler/posts_list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts";
import * as variable from "https://deno.land/x/[email protected]/variable/variable.ts";
import { batch } from "https://deno.land/x/[email protected]/batch/mod.ts";
import { getLogger } from "https://deno.land/std@0.212.0/log/mod.ts";
import { getLogger } from "https://deno.land/std@0.213.0/log/mod.ts";
import {
ensure,
is,
Expand Down
6 changes: 3 additions & 3 deletions denops/docbase/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ import {
input,
} from "https://deno.land/x/[email protected]/helper/mod.ts";
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { join } from "https://deno.land/std@0.212.0/path/mod.ts";
import { ensureFile } from "https://deno.land/std@0.212.0/fs/mod.ts";
import { join } from "https://deno.land/std@0.213.0/path/mod.ts";
import { ensureFile } from "https://deno.land/std@0.213.0/fs/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected]/mod.ts";
import {
ConsoleHandler,
getLogger,
RotatingFileHandler,
setup,
} from "https://deno.land/std@0.212.0/log/mod.ts";
} from "https://deno.land/std@0.213.0/log/mod.ts";

import { isOpener, isSearchPostsParams } from "./types.ts";
import { Client } from "./api/client.ts";
Expand Down
8 changes: 4 additions & 4 deletions denops/docbase/state.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { join } from "https://deno.land/std@0.212.0/path/mod.ts";
import { ensureFile } from "https://deno.land/std@0.212.0/fs/mod.ts";
import { exists, expandGlob } from "https://deno.land/std@0.212.0/fs/mod.ts";
import { parse, stringify } from "https://deno.land/std@0.212.0/toml/mod.ts";
import { join } from "https://deno.land/std@0.213.0/path/mod.ts";
import { ensureFile } from "https://deno.land/std@0.213.0/fs/mod.ts";
import { exists, expandGlob } from "https://deno.land/std@0.213.0/fs/mod.ts";
import { parse, stringify } from "https://deno.land/std@0.213.0/toml/mod.ts";
import { is, maybe } from "https://deno.land/x/[email protected]/mod.ts";

export type Domain = string;
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/[email protected]/mod.ts";
import { assert } from "https://deno.land/std@0.212.0/assert/mod.ts";
import { assert } from "https://deno.land/std@0.213.0/assert/mod.ts";

test({
mode: "all",
Expand Down

0 comments on commit d5df5f5

Please sign in to comment.