From 7f0da3ccb706045c473d97fbae21155e1921173b Mon Sep 17 00:00:00 2001 From: ytakahashi Date: Fri, 17 May 2024 07:23:25 +0900 Subject: [PATCH] chore: bump dependencies / change to jsr (#22) --- src/deps.ts | 6 +++--- test/deps.ts | 9 ++------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/deps.ts b/src/deps.ts index d262a7f..3973363 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -1,3 +1,3 @@ -export { Select } from "https://deno.land/x/cliffy@v1.0.0-rc.3/prompt/mod.ts"; -export { parseFlags } from "https://deno.land/x/cliffy@v1.0.0-rc.3/flags/mod.ts"; -export { $ } from "https://deno.land/x/dax@0.39.2/mod.ts"; +export { Select } from "https://deno.land/x/cliffy@v1.0.0-rc.4/prompt/mod.ts"; +export { parseFlags } from "https://deno.land/x/cliffy@v1.0.0-rc.4/flags/mod.ts"; +export { $ } from "jsr:@david/dax@^0.41.0"; diff --git a/test/deps.ts b/test/deps.ts index be80a2e..e28bfaf 100644 --- a/test/deps.ts +++ b/test/deps.ts @@ -1,7 +1,2 @@ -export { assertEquals } from "https://deno.land/std@0.219.1/assert/assert_equals.ts"; -export { assertRejects } from "https://deno.land/std@0.219.1/assert/assert_rejects.ts"; -export { - dirname, - fromFileUrl, - SEPARATOR, -} from "https://deno.land/std@0.219.1/path/mod.ts"; +export { assertEquals, assertRejects } from "jsr:@std/assert@^0.225.1"; +export { dirname, fromFileUrl, SEPARATOR } from "jsr:@std/path@^0.224.0";