Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Aug 3, 2024
1 parent a5bdaf8 commit bcebbbb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"lint-fix": "deno lint --fix denops",
"fmt": "deno fmt denops",
"test": "deno test -A --doc --parallel --shuffle denops/**/*.ts",
"upgrade": "deno run -A jsr:@molt/cli **/*.ts --no-resolve --write"
"upgrade": "deno run -A jsr:@molt/cli **/*.ts --write"
}
}
22 changes: 11 additions & 11 deletions denops/@ddu-uis/filer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ import {
type SourceInfo,
type UiActions,
type UiOptions,
} from "jsr:@shougo/[email protected]/types";
} from "jsr:@shougo/ddu-vim@~5.0.0/types";
import {
printError,
treePath2Filename,
} from "jsr:@shougo/[email protected]/utils";

import { batch } from "jsr:@denops/[email protected]/batch";
import * as op from "jsr:@denops/[email protected]/option";
import * as fn from "jsr:@denops/[email protected]/function";
import * as vars from "jsr:@denops/[email protected]/variable";
import { equal } from "jsr:@std/[email protected]";
import { is } from "jsr:@core/unknownutil@3.18.1";
import { SEPARATOR as pathsep } from "jsr:@std/[email protected]";
import { extname } from "jsr:@std/[email protected]";
} from "jsr:@shougo/ddu-vim@~5.0.0/utils";

import { batch } from "jsr:@denops/std@~7.0.0/batch";
import * as op from "jsr:@denops/std@~7.0.0/option";
import * as fn from "jsr:@denops/std@~7.0.0/function";
import * as vars from "jsr:@denops/std@~7.0.0/variable";
import { equal } from "jsr:@std/assert@~1.0.0";
import { is } from "jsr:@core/unknownutil@~4.0.0";
import { SEPARATOR as pathsep } from "jsr:@std/path@~1.0.1";
import { extname } from "jsr:@std/path@~1.0.0";

import { PreviewUi } from "./filer/preview.ts";

Expand Down
12 changes: 6 additions & 6 deletions denops/@ddu-uis/filer/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ import {
type PreviewContext,
type Previewer,
type TerminalPreviewer,
} from "jsr:@shougo/[email protected]/types";
} from "jsr:@shougo/ddu-vim@~5.0.0/types";

import { batch } from "jsr:@denops/[email protected]/batch";
import * as fn from "jsr:@denops/[email protected]/function";
import { equal } from "jsr:@std/[email protected]";
import { replace } from "jsr:@denops/[email protected]/buffer";
import { ensure, is } from "jsr:@core/unknownutil@3.18.1";
import { batch } from "jsr:@denops/std@~7.0.0/batch";
import * as fn from "jsr:@denops/std@~7.0.0/function";
import { equal } from "jsr:@std/assert@~1.0.0";
import { replace } from "jsr:@denops/std@~7.0.0/buffer";
import { ensure, is } from "jsr:@core/unknownutil@~4.0.0";

import type { Params } from "../filer.ts";

Expand Down

0 comments on commit bcebbbb

Please sign in to comment.