From 6a235e1def55919fd1c738b5171cd11cad11deba Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Fri, 9 Feb 2024 13:09:13 +0900 Subject: [PATCH] Update deps --- Makefile | 6 +++--- denops/dpp/deps.ts | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 72227fa..6c157ad 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/denops/dpp/deps.ts b/denops/dpp/deps.ts index 0c3274b..6a8fd4c 100644 --- a/denops/dpp/deps.ts +++ b/denops/dpp/deps.ts @@ -11,24 +11,24 @@ export * as op from "https://deno.land/x/denops_std@v6.0.1/option/mod.ts"; export * as fn from "https://deno.land/x/denops_std@v6.0.1/function/mod.ts"; export * as vars from "https://deno.land/x/denops_std@v6.0.1/variable/mod.ts"; export * as autocmd from "https://deno.land/x/denops_std@v6.0.1/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/msgpack_rpc@v4.0.1/response_waiter.ts"; export { Lock } from "https://deno.land/x/async@v2.1.0/mod.ts";