Skip to content

Commit

Permalink
Merge pull request #17 from yukimemi/udd-update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Mar 4, 2024
2 parents 31ee116 + 42f46c1 commit 8970242
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion denops/futago/dispatcher/git_commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Last Change : 2024/02/04 20:29:33.
// =============================================================================

import * as fn from "https://deno.land/x/denops_std@v6.2.0/function/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
import { Futago } from "../futago.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { z } from "https://deno.land/x/[email protected]/mod.ts";
Expand Down
6 changes: 3 additions & 3 deletions denops/futago/dispatcher/load_chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
// Last Change : 2024/01/28 09:59:55.
// =============================================================================

import * as batch from "https://deno.land/x/denops_std@v6.2.0/batch/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.2.0/function/mod.ts";
import * as option from "https://deno.land/x/denops_std@v6.2.0/option/mod.ts";
import * as batch from "https://deno.land/x/denops_std@v6.3.0/batch/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
import * as option from "https://deno.land/x/denops_std@v6.3.0/option/mod.ts";
import { Futago } from "../futago.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { z } from "https://deno.land/x/[email protected]/mod.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/futago/dispatcher/open_history.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// Last Change : 2024/01/28 01:47:40.
// =============================================================================

import * as batch from "https://deno.land/x/denops_std@v6.2.0/batch/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.2.0/function/mod.ts";
import * as batch from "https://deno.land/x/denops_std@v6.3.0/batch/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
import { z } from "https://deno.land/x/[email protected]/mod.ts";
import { walk } from "https://deno.land/[email protected]/fs/walk.ts";
Expand Down
4 changes: 2 additions & 2 deletions denops/futago/dispatcher/send_chat_message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
// Last Change : 2024/02/03 20:00:01.
// =============================================================================

import * as option from "https://deno.land/x/denops_std@v6.2.0/option/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.2.0/function/mod.ts";
import * as option from "https://deno.land/x/denops_std@v6.3.0/option/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
import { Futago } from "../futago.ts";
import { getNow } from "../util.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";
Expand Down
6 changes: 3 additions & 3 deletions denops/futago/dispatcher/start_chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
// Last Change : 2024/01/28 11:29:27.
// =============================================================================

import * as batch from "https://deno.land/x/denops_std@v6.2.0/batch/mod.ts";
import * as buffer from "https://deno.land/x/denops_std@v6.2.0/buffer/mod.ts";
import * as option from "https://deno.land/x/denops_std@v6.2.0/option/mod.ts";
import * as batch from "https://deno.land/x/denops_std@v6.3.0/batch/mod.ts";
import * as buffer from "https://deno.land/x/denops_std@v6.3.0/buffer/mod.ts";
import * as option from "https://deno.land/x/denops_std@v6.3.0/option/mod.ts";
import { Futago } from "../futago.ts";
import { GenerationConfigSchema } from "../schema/generation_config.ts";
import { HistorySchema } from "../schema/history.ts";
Expand Down
10 changes: 5 additions & 5 deletions denops/futago/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
// Last Change : 2024/02/03 23:39:53.
// =============================================================================

import * as fn from "https://deno.land/x/denops_std@v6.2.0/function/mod.ts";
import * as helper from "https://deno.land/x/denops_std@v6.2.0/helper/mod.ts";
import * as autocmd from "https://deno.land/x/denops_std@v6.2.0/autocmd/mod.ts";
import * as vars from "https://deno.land/x/denops_std@v6.2.0/variable/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
import * as helper from "https://deno.land/x/denops_std@v6.3.0/helper/mod.ts";
import * as autocmd from "https://deno.land/x/denops_std@v6.3.0/autocmd/mod.ts";
import * as vars from "https://deno.land/x/denops_std@v6.3.0/variable/mod.ts";
import { deepMerge } from "https://deno.land/[email protected]/collections/deep_merge.ts";
import type { Denops } from "https://deno.land/x/denops_std@v6.2.0/mod.ts";
import type { Denops } from "https://deno.land/x/denops_std@v6.3.0/mod.ts";
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { ensureDir, ensureFile } from "https://deno.land/[email protected]/fs/mod.ts";
import { dirname, join } from "https://deno.land/[email protected]/path/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion denops/futago/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// =============================================================================

import * as datetime from "https://deno.land/[email protected]/datetime/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.2.0/function/mod.ts";
import * as fn from "https://deno.land/x/denops_std@v6.3.0/function/mod.ts";
import { type Denops } from "https://deno.land/x/[email protected]/mod.ts";

export function getNow(): string {
Expand Down

0 comments on commit 8970242

Please sign in to comment.