From cfc87a34c2b1157706112b22790a18e7e5433729 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Wed, 30 Oct 2024 13:38:04 +0900 Subject: [PATCH] Update deps --- denops/ddu/app.ts | 2 +- denops/ddu/base/column.ts | 2 +- denops/ddu/base/config.ts | 2 +- denops/ddu/base/filter.ts | 2 +- denops/ddu/base/kind.ts | 2 +- denops/ddu/base/source.ts | 2 +- denops/ddu/base/ui.ts | 2 +- denops/ddu/context.ts | 4 ++-- denops/ddu/ddu.ts | 4 ++-- denops/ddu/ext.ts | 4 ++-- denops/ddu/loader.ts | 6 +++--- denops/ddu/types.ts | 2 +- denops/ddu/utils.ts | 2 +- 13 files changed, 18 insertions(+), 18 deletions(-) diff --git a/denops/ddu/app.ts b/denops/ddu/app.ts index a7ddbb8..c11e463 100644 --- a/denops/ddu/app.ts +++ b/denops/ddu/app.ts @@ -35,7 +35,7 @@ import { defaultColumnOptions } from "./base/column.ts"; import { defaultKindOptions } from "./base/kind.ts"; import { defaultActionOptions } from "./base/action.ts"; -import type { Denops, Entrypoint } from "jsr:@denops/std@~7.2.0"; +import type { Denops, Entrypoint } from "jsr:@denops/std@~7.3.0"; import { toFileUrl } from "jsr:@std/path@~1.0.2/to-file-url"; import { Lock } from "jsr:@core/asyncutil@~1.2.0/lock"; diff --git a/denops/ddu/base/column.ts b/denops/ddu/base/column.ts index 7ef0f30..8dea900 100644 --- a/denops/ddu/base/column.ts +++ b/denops/ddu/base/column.ts @@ -7,7 +7,7 @@ import type { ItemHighlight, } from "../types.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type OnInitArguments = { denops: Denops; diff --git a/denops/ddu/base/config.ts b/denops/ddu/base/config.ts index e9b6ce4..06c91c9 100644 --- a/denops/ddu/base/config.ts +++ b/denops/ddu/base/config.ts @@ -1,6 +1,6 @@ import type { ContextBuilder } from "../context.ts"; import type { DduAliasType } from "../types.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type ConfigArguments = { denops: Denops; diff --git a/denops/ddu/base/filter.ts b/denops/ddu/base/filter.ts index 6ba4d05..ad47619 100644 --- a/denops/ddu/base/filter.ts +++ b/denops/ddu/base/filter.ts @@ -8,7 +8,7 @@ import type { SourceOptions, } from "../types.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type OnInitArguments = { denops: Denops; diff --git a/denops/ddu/base/kind.ts b/denops/ddu/base/kind.ts index 0765968..d9e0c42 100644 --- a/denops/ddu/base/kind.ts +++ b/denops/ddu/base/kind.ts @@ -9,7 +9,7 @@ import type { Previewer, } from "../types.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type GetPreviewerArguments = { denops: Denops; diff --git a/denops/ddu/base/source.ts b/denops/ddu/base/source.ts index 5d3ea94..cac468e 100644 --- a/denops/ddu/base/source.ts +++ b/denops/ddu/base/source.ts @@ -9,7 +9,7 @@ import type { SourceOptions, } from "../types.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type OnInitArguments = { denops: Denops; diff --git a/denops/ddu/base/ui.ts b/denops/ddu/base/ui.ts index 1d9c40c..16cee66 100644 --- a/denops/ddu/base/ui.ts +++ b/denops/ddu/base/ui.ts @@ -8,7 +8,7 @@ import type { UiOptions, } from "../types.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type UiActions = Record< string, diff --git a/denops/ddu/context.ts b/denops/ddu/context.ts index 0fd2af9..e40079d 100644 --- a/denops/ddu/context.ts +++ b/denops/ddu/context.ts @@ -13,8 +13,8 @@ import type { import { defaultSourceOptions } from "./base/source.ts"; import { printError } from "./utils.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; -import * as fn from "jsr:@denops/std@~7.2.0/function"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; +import * as fn from "jsr:@denops/std@~7.3.0/function"; import { assertEquals } from "jsr:@std/assert@~1.0.2/equals"; diff --git a/denops/ddu/ddu.ts b/denops/ddu/ddu.ts index 8436e0b..6d02e37 100644 --- a/denops/ddu/ddu.ts +++ b/denops/ddu/ddu.ts @@ -46,8 +46,8 @@ import { uiSearchItem, } from "./ext.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; -import * as fn from "jsr:@denops/std@~7.2.0/function"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; +import * as fn from "jsr:@denops/std@~7.3.0/function"; import { assertEquals } from "jsr:@std/assert@~1.0.2/equals"; import { equal } from "jsr:@std/assert@~1.0.2/equal"; diff --git a/denops/ddu/ext.ts b/denops/ddu/ext.ts index 798b5a3..334c77a 100644 --- a/denops/ddu/ext.ts +++ b/denops/ddu/ext.ts @@ -48,8 +48,8 @@ import type { BaseUi } from "./base/ui.ts"; import type { Loader } from "./loader.ts"; import { convertUserString, printError } from "./utils.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; -import * as fn from "jsr:@denops/std@~7.2.0/function"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; +import * as fn from "jsr:@denops/std@~7.3.0/function"; import type { Lock } from "jsr:@core/asyncutil@~1.2.0/lock"; import { is } from "jsr:@core/unknownutil@~4.3.0/is"; diff --git a/denops/ddu/loader.ts b/denops/ddu/loader.ts index c75344f..d0090ec 100644 --- a/denops/ddu/loader.ts +++ b/denops/ddu/loader.ts @@ -13,12 +13,12 @@ import type { BaseFilter } from "./base/filter.ts"; import type { BaseKind } from "./base/kind.ts"; import type { BaseSource } from "./base/source.ts"; import type { BaseUi } from "./base/ui.ts"; -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; import { isDenoCacheIssueError } from "./utils.ts"; import { mods } from "./_mods.js"; -import * as fn from "jsr:@denops/std@~7.2.0/function"; -import * as op from "jsr:@denops/std@~7.2.0/option"; +import * as fn from "jsr:@denops/std@~7.3.0/function"; +import * as op from "jsr:@denops/std@~7.3.0/option"; import { basename } from "jsr:@std/path@~1.0.2/basename"; import { parse } from "jsr:@std/path@~1.0.2/parse"; diff --git a/denops/ddu/types.ts b/denops/ddu/types.ts index 1bfe51e..1ac2393 100644 --- a/denops/ddu/types.ts +++ b/denops/ddu/types.ts @@ -1,4 +1,4 @@ -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; export type DduExtType = "ui" | "source" | "filter" | "kind" | "column"; diff --git a/denops/ddu/utils.ts b/denops/ddu/utils.ts index 2c9ffe3..c6076a3 100644 --- a/denops/ddu/utils.ts +++ b/denops/ddu/utils.ts @@ -1,4 +1,4 @@ -import type { Denops } from "jsr:@denops/std@~7.2.0"; +import type { Denops } from "jsr:@denops/std@~7.3.0"; import { SEPARATOR as pathsep } from "jsr:@std/path@~1.0.2/constants"; import type { TreePath } from "./types.ts";