Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Oct 3, 2024
1 parent 29bdd14 commit 1ff3843
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions denops/@ddu-sources/ddc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type { Context, Item } from "jsr:@shougo/[email protected]/types";
import { BaseSource } from "jsr:@shougo/[email protected]/source";
import type { DdcItem } from "../ddc/types.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as vars from "jsr:@denops/std@~7.1.0/variable";
import type { Denops } from "jsr:@denops/std@~7.2.0";
import * as vars from "jsr:@denops/std@~7.2.0/variable";

type Params = Record<string, never>;

Expand Down
6 changes: 3 additions & 3 deletions denops/ddc/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ import { isDenoCacheIssueError } from "./utils.ts";
import { createCallbackContext } from "./callback.ts";
import { getFilter, getPreviewer, onCompleteDone, onEvent } from "./ext.ts";

import type { Denops, Entrypoint } from "jsr:@denops/std@~7.1.0";
import * as vars from "jsr:@denops/std@~7.1.0/variable";
import type { Denops, Entrypoint } from "jsr:@denops/std@~7.2.0";
import * as vars from "jsr:@denops/std@~7.2.0/variable";

import { ensure } from "jsr:@core/unknownutil@~4.3.0/ensure";
import { is } from "jsr:@core/unknownutil@~4.3.0/is";
import { Lock } from "jsr:@core/asyncutil@~1.1.1/lock";
import { Lock } from "jsr:@core/asyncutil@~1.2.0/lock";
import { toFileUrl } from "jsr:@std/path@~1.0.2/to-file-url";

export const main: Entrypoint = (denops: Denops) => {
Expand Down
2 changes: 1 addition & 1 deletion denops/ddc/base/config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { ContextBuilder, DdcExtType } from "../types.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import type { Denops } from "jsr:@denops/std@~7.2.0";

export type ConfigArguments = {
denops: Denops;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddc/base/filter.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.1.0";
import type { Denops } from "jsr:@denops/std@~7.2.0";

export type OnInitArguments<Params extends BaseParams> = {
denops: Denops;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddc/base/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type {
} from "../types.ts";
import { convertKeywordPattern } from "../utils.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import type { Denops } from "jsr:@denops/std@~7.2.0";

export type OnInitArguments<Params extends BaseParams> = {
denops: Denops;
Expand Down
2 changes: 1 addition & 1 deletion denops/ddc/base/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {
UiOptions,
} from "../types.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import type { Denops } from "jsr:@denops/std@~7.2.0";

export type OnInitArguments<Params extends BaseParams> = {
denops: Denops;
Expand Down
12 changes: 6 additions & 6 deletions denops/ddc/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import type {
import { defaultSourceOptions } from "./base/source.ts";
import { printError } from "./utils.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as op from "jsr:@denops/std@~7.1.0/option";
import * as vimOp from "jsr:@denops/std@~7.1.0/option/vim";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import * as vars from "jsr:@denops/std@~7.1.0/variable";
import { collect } from "jsr:@denops/std@~7.1.0/batch";
import type { Denops } from "jsr:@denops/std@~7.2.0";
import * as op from "jsr:@denops/std@~7.2.0/option";
import * as vimOp from "jsr:@denops/std@~7.2.0/option/vim";
import * as fn from "jsr:@denops/std@~7.2.0/function";
import * as vars from "jsr:@denops/std@~7.2.0/variable";
import { collect } from "jsr:@denops/std@~7.2.0/batch";

import { assertEquals } from "jsr:@std/assert@~1.0.2/equals";
import { ensure } from "jsr:@core/unknownutil@~4.3.0/ensure";
Expand Down
12 changes: 6 additions & 6 deletions denops/ddc/ddc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ import {
getUi,
} from "./ext.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as autocmd from "jsr:@denops/std@~7.1.0/autocmd";
import * as op from "jsr:@denops/std@~7.1.0/option";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import * as vars from "jsr:@denops/std@~7.1.0/variable";
import { batch } from "jsr:@denops/std@~7.1.0/batch";
import type { Denops } from "jsr:@denops/std@~7.2.0";
import * as autocmd from "jsr:@denops/std@~7.2.0/autocmd";
import * as op from "jsr:@denops/std@~7.2.0/option";
import * as fn from "jsr:@denops/std@~7.2.0/function";
import * as vars from "jsr:@denops/std@~7.2.0/variable";
import { batch } from "jsr:@denops/std@~7.2.0/batch";

import { assertEquals } from "jsr:@std/assert@~1.0.2/equals";
import { equal } from "jsr:@std/assert@~1.0.2/equal";
Expand Down
2 changes: 1 addition & 1 deletion denops/ddc/ext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { type BaseSource, defaultSourceOptions } from "./base/source.ts";
import { type BaseFilter, defaultFilterOptions } from "./base/filter.ts";
import { printError } from "./utils.ts";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import type { Denops } from "jsr:@denops/std@~7.2.0";

import { deadline } from "jsr:@std/async@~1.0.1/deadline";

Expand Down
8 changes: 4 additions & 4 deletions denops/ddc/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ import type { BaseUi } from "./base/ui.ts";
import { isDenoCacheIssueError } from "./utils.ts";
import { mods } from "./_mods.js";

import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as op from "jsr:@denops/std@~7.1.0/option";
import * as fn from "jsr:@denops/std@~7.1.0/function";
import type { Denops } from "jsr:@denops/std@~7.2.0";
import * as op from "jsr:@denops/std@~7.2.0/option";
import * as fn from "jsr:@denops/std@~7.2.0/function";

import { basename } from "jsr:@std/path@~1.0.2/basename";
import { parse } from "jsr:@std/path@~1.0.2/parse";
import { is } from "jsr:@core/unknownutil@~4.3.0/is";
import { toFileUrl } from "jsr:@std/path@~1.0.2/to-file-url";
import { Lock } from "jsr:@core/asyncutil@~1.1.1/lock";
import { Lock } from "jsr:@core/asyncutil@~1.2.0/lock";

export class Loader {
#uis: Record<UiName, BaseUi<BaseParams>> = {};
Expand Down
4 changes: 2 additions & 2 deletions denops/ddc/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Denops } from "jsr:@denops/std@~7.1.0";
import type { AutocmdEvent } from "jsr:@denops/std@~7.1.0/autocmd";
import type { Denops } from "jsr:@denops/std@~7.2.0";
import type { AutocmdEvent } from "jsr:@denops/std@~7.2.0/autocmd";

export type BaseParams = Record<string, unknown>;

Expand Down
4 changes: 2 additions & 2 deletions denops/ddc/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Denops } from "jsr:@denops/std@~7.1.0";
import * as op from "jsr:@denops/std@~7.1.0/option";
import type { Denops } from "jsr:@denops/std@~7.2.0";
import * as op from "jsr:@denops/std@~7.2.0/option";

import { assertEquals } from "jsr:@std/assert@~1.0.2/equals";

Expand Down

0 comments on commit 1ff3843

Please sign in to comment.