Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Oct 30, 2024
1 parent 9bb89d8 commit cfc87a3
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion denops/ddu/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/base/column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Params extends BaseParams> = {
denops: Denops;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/base/config.ts
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/base/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Params extends BaseParams> = {
denops: Denops;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/base/kind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/base/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Params extends BaseParams> = {
denops: Denops;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/base/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Params extends BaseParams> = Record<
string,
Expand Down
4 changes: 2 additions & 2 deletions denops/ddu/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
4 changes: 2 additions & 2 deletions denops/ddu/ddu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
4 changes: 2 additions & 2 deletions denops/ddu/ext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
6 changes: 3 additions & 3 deletions denops/ddu/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/types.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
2 changes: 1 addition & 1 deletion denops/ddu/utils.ts
Original file line number Diff line number Diff line change
@@ -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";

Expand Down

0 comments on commit cfc87a3

Please sign in to comment.