Skip to content

Commit 6a525b8

Browse files
committed
📦 Update Deno dependencies
Update dependencies by udd: /home/runner/work/deno-unknownutil/deno-unknownutil/scripts/build_npm.ts [1/1] Looking for releases: https://deno.land/x/[email protected]/mod.ts [1/1] Attempting update: https://deno.land/x/[email protected]/mod.ts -> 0.38.1 [1/1] Update successful: https://deno.land/x/[email protected]/mod.ts -> 0.38.1 /home/runner/work/deno-unknownutil/deno-unknownutil/is_bench.ts /home/runner/work/deno-unknownutil/deno-unknownutil/is.ts /home/runner/work/deno-unknownutil/deno-unknownutil/mod.ts /home/runner/work/deno-unknownutil/deno-unknownutil/is_test.ts [1/2] Looking for releases: https://deno.land/[email protected]/testing/asserts.ts [1/2] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.200.0 [1/2] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.200.0 [2/2] Looking for releases: https://deno.land/[email protected]/testing/types.ts [2/2] Attempting update: https://deno.land/[email protected]/testing/types.ts -> 0.200.0 [2/2] Update successful: https://deno.land/[email protected]/testing/types.ts -> 0.200.0 /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/[email protected]/testing/asserts.ts [1/1] Attempting update: https://deno.land/[email protected]/testing/asserts.ts -> 0.200.0 [1/1] Update successful: https://deno.land/[email protected]/testing/asserts.ts -> 0.200.0 Successfully updated: https://deno.land/x/[email protected]/mod.ts 0.37.0 -> 0.38.1 https://deno.land/[email protected]/testing/asserts.ts 0.192.0 -> 0.200.0 https://deno.land/[email protected]/testing/types.ts 0.192.0 -> 0.200.0 https://deno.land/[email protected]/testing/asserts.ts 0.192.0 -> 0.200.0
1 parent e00eee8 commit 6a525b8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

is_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import {
22
assertEquals,
33
assertStrictEquals,
4-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.200.0/testing/asserts.ts";
55
import type {
66
AssertTrue,
77
IsExact,
8-
} from "https://deno.land/std@0.192.0/testing/types.ts";
8+
} from "https://deno.land/std@0.200.0/testing/types.ts";
99
import is, {
1010
isAllOf,
1111
isArray,

scripts/build_npm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { build, emptyDir } from "https://deno.land/x/dnt@0.37.0/mod.ts";
1+
import { build, emptyDir } from "https://deno.land/x/dnt@0.38.1/mod.ts";
22

33
const name = "unknownutil";
44
const version = Deno.args[0];

util_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assertStrictEquals,
33
assertThrows,
4-
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
4+
} from "https://deno.land/std@0.200.0/testing/asserts.ts";
55
import { assert, AssertError, ensure, maybe } from "./util.ts";
66

77
const x: unknown = Symbol("x");

0 commit comments

Comments
 (0)