From a808099102c088bb45cbb6327723c67496498ebb Mon Sep 17 00:00:00 2001 From: lambdalisue Date: Fri, 13 Oct 2023 00:14:36 +0000 Subject: [PATCH] :package: Update Deno dependencies Update dependencies by udd: /home/runner/work/deno-unknownutil/deno-unknownutil/is_test.ts [1/3] Looking for releases: https://deno.land/std@0.202.0/assert/mod.ts [1/3] Attempting update: https://deno.land/std@0.202.0/assert/mod.ts -> 0.204.0 [1/3] Update successful: https://deno.land/std@0.202.0/assert/mod.ts -> 0.204.0 [2/3] Looking for releases: https://deno.land/std@0.202.0/testing/snapshot.ts [2/3] Attempting update: https://deno.land/std@0.202.0/testing/snapshot.ts -> 0.204.0 [2/3] Update successful: https://deno.land/std@0.202.0/testing/snapshot.ts -> 0.204.0 [3/3] Looking for releases: https://deno.land/std@0.202.0/testing/types.ts [3/3] Attempting update: https://deno.land/std@0.202.0/testing/types.ts -> 0.204.0 [3/3] Update successful: https://deno.land/std@0.202.0/testing/types.ts -> 0.204.0 /home/runner/work/deno-unknownutil/deno-unknownutil/mod.ts /home/runner/work/deno-unknownutil/deno-unknownutil/is.ts /home/runner/work/deno-unknownutil/deno-unknownutil/inspect.ts /home/runner/work/deno-unknownutil/deno-unknownutil/inspect_test.ts [1/1] Looking for releases: https://deno.land/std@0.202.0/testing/snapshot.ts [1/1] Attempting update: https://deno.land/std@0.202.0/testing/snapshot.ts -> 0.204.0 [1/1] Update successful: https://deno.land/std@0.202.0/testing/snapshot.ts -> 0.204.0 /home/runner/work/deno-unknownutil/deno-unknownutil/scripts/build_npm.ts [1/1] Looking for releases: https://deno.land/x/dnt@0.38.1/mod.ts [1/1] Using latest: https://deno.land/x/dnt@0.38.1/mod.ts /home/runner/work/deno-unknownutil/deno-unknownutil/util.ts /home/runner/work/deno-unknownutil/deno-unknownutil/util_test.ts [1/1] Looking for releases: https://deno.land/std@0.202.0/assert/mod.ts [1/1] Attempting update: https://deno.land/std@0.202.0/assert/mod.ts -> 0.204.0 [1/1] Update successful: https://deno.land/std@0.202.0/assert/mod.ts -> 0.204.0 /home/runner/work/deno-unknownutil/deno-unknownutil/is_bench.ts Already latest version: https://deno.land/x/dnt@0.38.1/mod.ts == 0.38.1 Successfully updated: https://deno.land/std@0.202.0/assert/mod.ts 0.202.0 -> 0.204.0 https://deno.land/std@0.202.0/testing/snapshot.ts 0.202.0 -> 0.204.0 https://deno.land/std@0.202.0/testing/types.ts 0.202.0 -> 0.204.0 https://deno.land/std@0.202.0/testing/snapshot.ts 0.202.0 -> 0.204.0 https://deno.land/std@0.202.0/assert/mod.ts 0.202.0 -> 0.204.0 --- inspect_test.ts | 2 +- is_test.ts | 6 +++--- util_test.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inspect_test.ts b/inspect_test.ts index b28d965..06594ca 100644 --- a/inspect_test.ts +++ b/inspect_test.ts @@ -1,6 +1,6 @@ import { assertSnapshot, -} from "https://deno.land/std@0.202.0/testing/snapshot.ts"; +} from "https://deno.land/std@0.204.0/testing/snapshot.ts"; import { inspect } from "./inspect.ts"; Deno.test("inspect", async (t) => { diff --git a/is_test.ts b/is_test.ts index 310c636..5399e10 100644 --- a/is_test.ts +++ b/is_test.ts @@ -1,14 +1,14 @@ import { assertEquals, assertStrictEquals, -} from "https://deno.land/std@0.202.0/assert/mod.ts"; +} from "https://deno.land/std@0.204.0/assert/mod.ts"; import { assertSnapshot, -} from "https://deno.land/std@0.202.0/testing/snapshot.ts"; +} from "https://deno.land/std@0.204.0/testing/snapshot.ts"; import type { AssertTrue, IsExact, -} from "https://deno.land/std@0.202.0/testing/types.ts"; +} from "https://deno.land/std@0.204.0/testing/types.ts"; import is, { isAllOf, isAny, diff --git a/util_test.ts b/util_test.ts index 4a01133..2dec7d9 100644 --- a/util_test.ts +++ b/util_test.ts @@ -1,7 +1,7 @@ import { assertStrictEquals, assertThrows, -} from "https://deno.land/std@0.202.0/assert/mod.ts"; +} from "https://deno.land/std@0.204.0/assert/mod.ts"; import { assert, AssertError,