Skip to content

Commit

Permalink
Merge pull request #6 from yukimemi/udd-update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 25, 2024
2 parents d3a2e7d + f45bea3 commit 2b0f9ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions denops/futago/futago.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Last Change : 2024/01/14 19:20:39.
// =============================================================================

import * as datetime from "https://deno.land/std@0.212.0/datetime/mod.ts";
import * as datetime from "https://deno.land/std@0.213.0/datetime/mod.ts";
import sanitize from "https://esm.sh/[email protected]";
import {
ChatSession,
Expand All @@ -15,7 +15,7 @@ import {
SafetySetting,
StartChatParams,
} from "https://esm.sh/@google/[email protected]";
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";

export class Futago {
#debug: boolean;
Expand Down
2 changes: 1 addition & 1 deletion denops/futago/futago_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// =============================================================================

import { Futago } from "./futago.ts";
import { assertStringIncludes } from "https://deno.land/std@0.212.0/assert/assert_string_includes.ts";
import { assertStringIncludes } from "https://deno.land/std@0.213.0/assert/assert_string_includes.ts";

Deno.test({
name: "Test sendMessageStream()",
Expand Down
10 changes: 5 additions & 5 deletions denops/futago/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@

import * as batch from "https://deno.land/x/[email protected]/batch/mod.ts";
import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts";
import * as datetime from "https://deno.land/std@0.212.0/datetime/mod.ts";
import * as datetime from "https://deno.land/std@0.213.0/datetime/mod.ts";
import * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
import * as helper from "https://deno.land/x/[email protected]/helper/mod.ts";
import * as option from "https://deno.land/x/[email protected]/option/mod.ts";
import * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
import * as vars from "https://deno.land/x/[email protected]/variable/mod.ts";
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts";
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts";
import { walk } from "https://deno.land/std@0.212.0/fs/walk.ts";
import { walk } from "https://deno.land/std@0.213.0/fs/walk.ts";
import { assert, ensure, is } from "https://deno.land/x/[email protected]/mod.ts";
import { ensureDir, ensureFile } from "https://deno.land/std@0.212.0/fs/mod.ts";
import { basename, dirname, extname, join } from "https://deno.land/std@0.212.0/path/mod.ts";
import { ensureDir, ensureFile } from "https://deno.land/std@0.213.0/fs/mod.ts";
import { basename, dirname, extname, join } from "https://deno.land/std@0.213.0/path/mod.ts";
import {
ConsoleHandler,
FileHandler,
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 {
GenerationConfig,
InputContent,
Expand Down

0 comments on commit 2b0f9ec

Please sign in to comment.