Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Feb 9, 2024
1 parent e7c0b39 commit 6a235e1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ TSTEST=$(shell grep -rl "Deno.test" denops)
lint:
deno check ${TS}
deno fmt --check denops
deno test --unstable --no-run -A ${TS}
deno lint --unstable denops
deno test --no-run -A ${TS}
deno lint denops

test:
deno test --unstable -A ${TSTEST}
deno test -A ${TSTEST}

format:
deno fmt denops
Expand Down
10 changes: 5 additions & 5 deletions denops/dpp/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@ export * as op from "https://deno.land/x/[email protected]/option/mod.ts";
export * as fn from "https://deno.land/x/[email protected]/function/mod.ts";
export * as vars from "https://deno.land/x/[email protected]/variable/mod.ts";
export * as autocmd from "https://deno.land/x/[email protected]/autocmd/mod.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.14.1/mod.ts";
export { ensure, is } from "https://deno.land/x/unknownutil@v3.15.0/mod.ts";
export {
assertEquals,
assertInstanceOf,
equal,
} from "https://deno.land/std@0.214.0/assert/mod.ts";
} from "https://deno.land/std@0.215.0/assert/mod.ts";
export {
basename,
dirname,
extname,
join,
parse,
SEP as pathsep,
SEPARATOR as pathsep,
toFileUrl,
} from "https://deno.land/std@0.214.0/path/mod.ts";
} from "https://deno.land/std@0.215.0/path/mod.ts";
export {
deadline,
DeadlineError,
} from "https://deno.land/std@0.214.0/async/mod.ts";
} from "https://deno.land/std@0.215.0/async/mod.ts";
export { TimeoutError } from "https://deno.land/x/[email protected]/response_waiter.ts";
export { Lock } from "https://deno.land/x/[email protected]/mod.ts";

0 comments on commit 6a235e1

Please sign in to comment.