Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoh86 committed Apr 7, 2024
1 parent 4eee52d commit 89250d4
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion denops/docbase/api/fetcher.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
ensure,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { getLogger } from "https://deno.land/[email protected]/log/mod.ts";
import { Response, ResponseWithBody } from "./types.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/attachments.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { Fetcher } from "../fetcher.ts";

const UploadAttachmentParamsFields = {
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/comments.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { Fetcher } from "../fetcher.ts";
import { isUserSummary, UserSummary } from "./user_summary.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/group_summary.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";

const GroupSummaryFields = {
id: is.Number,
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/groups.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { isUserSummary, UserSummary } from "./user_summary.ts";
import { isGroupSummary } from "./group_summary.ts";
import { Fetcher } from "../fetcher.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/posts.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { Fetcher } from "../fetcher.ts";

import { isTagSummary, TagSummary } from "./tags.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/profiles.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { Fetcher } from "../fetcher.ts";
import { GroupSummary, isGroupSummary } from "./group_summary.ts";

Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/tags.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { Fetcher } from "../fetcher.ts";

const TagFields = {
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/user_summary.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";

const UserSummaryFields = {
id: is.Number,
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/api/resources/users.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
is,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";
import { Fetcher } from "../fetcher.ts";
import { GroupSummary, isGroupSummary } from "./group_summary.ts";

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 @@ -3,7 +3,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].0/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts";
import { getLogger } from "https://deno.land/[email protected]/log/mod.ts";

import { Handler, openBuffer } from "../router.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/handler/post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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].0/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts";
import { getLogger } from "https://deno.land/[email protected]/log/mod.ts";

import { Filetype, prepareProxy } from "./buffer.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 @@ -9,7 +9,7 @@ import {
ensure,
is,
maybe,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";

import { isOpener, isPost } from "../types.ts";
import { Filetype, prepareViewer, setViewerContent } from "./buffer.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/handler/teams_list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,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 { ensure, is } from "https://deno.land/x/[email protected].0/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts";
import * as variable from "https://deno.land/x/[email protected]/variable/variable.ts";

import { Filetype, prepareViewer, setViewerContent } from "./buffer.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { join } from "https://deno.land/[email protected]/path/mod.ts";
import { ensureFile } from "https://deno.land/[email protected]/fs/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected].0/mod.ts";
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts";
import {
ConsoleHandler,
getLogger,
Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { join } from "https://deno.land/[email protected]/path/mod.ts";
import { ensureFile } from "https://deno.land/[email protected]/fs/mod.ts";
import { exists, expandGlob } from "https://deno.land/[email protected]/fs/mod.ts";
import { parse, stringify } from "https://deno.land/[email protected]/toml/mod.ts";
import { is, maybe } from "https://deno.land/x/[email protected].0/mod.ts";
import { is, maybe } from "https://deno.land/x/[email protected].2/mod.ts";

export type Domain = string;

Expand Down
2 changes: 1 addition & 1 deletion denops/docbase/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
is,
// ObjectOf as O,
Predicate as P,
} from "https://deno.land/x/[email protected].0/mod.ts";
} from "https://deno.land/x/[email protected].2/mod.ts";

export type Opener = "edit" | "new" | "vnew" | "tabnew";
export const isOpener: P<Opener> = is.OneOf([
Expand Down

0 comments on commit 89250d4

Please sign in to comment.