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 02cecf0 commit 903718f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 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"
}
}
26 changes: 13 additions & 13 deletions denops/@ddu-kinds/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ import {
type PreviewContext,
type Previewer,
type SourceOptions,
} 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 * as fn from "jsr:@denops/[email protected]/function";
import * as vars from "jsr:@denops/[email protected]/variable";
import { basename, dirname } from "jsr:@std/[email protected]";

import { isAbsolute, join, normalize, relative } from "jsr:@std/[email protected]";
import { copy, ensureDir, ensureFile, move } from "jsr:@std/[email protected]";
import { ByteSliceStream } from "jsr:@std/[email protected]/byte-slice-stream";
import { toArrayBuffer } from "jsr:@std/[email protected]/to-array-buffer";
import { TextLineStream } from "jsr:@std/[email protected]";
import { ensure, is } from "jsr:@core/unknownutil@3.18.1";
} from "jsr:@shougo/ddu-vim@~5.0.0/utils";

import * as fn from "jsr:@denops/std@~7.0.1/function";
import * as vars from "jsr:@denops/std@~7.0.1/variable";
import { basename, dirname } from "jsr:@std/path@~1.0.2";

import { isAbsolute, join, normalize, relative } from "jsr:@std/path@~1.0.2";
import { copy, ensureDir, ensureFile, move } from "jsr:@std/fs@~1.0.0";
import { ByteSliceStream } from "jsr:@std/streams@~1.0.0/byte-slice-stream";
import { toArrayBuffer } from "jsr:@std/streams@~1.0.0/to-array-buffer";
import { TextLineStream } from "jsr:@std/streams@~1.0.0";
import { ensure, is } from "jsr:@core/unknownutil@~4.0.0";

export type ActionData = {
bufNr?: number;
Expand Down

0 comments on commit 903718f

Please sign in to comment.